patbef-iOS/Befund/Core/Https/Servers.swift

56 lines
2.4 KiB
Swift
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// Servers.swift
// Befund
//
// Created by Irakli Abetschkhrischwili on 27.06.22.
// Copyright © 2022 MVZ Dr. Stein und Kollegen. All rights reserved.
//
import Foundation
extension Core.Https
{
public enum Servers : String
{
// Development server
case DEVELOPMENT = "192.168.178.86"
/**
* HOST´s of productive outside services
*/
case LIS_SIMULATOR = "pba-simulator.patientenbefundapp.labor-limbach-hannover.de:8443"
case LABOR_HEIDELBERG = "patientenbefundapp.labor-limbach.de"
case LABOR_LUDWIGSBURG = "patientenbefundapp.mvz-labor-lb.de"
case LABOR_ULM = "patientenbefundapp.humangenetik-ulm.de"
case LABOR_AACHEN = "patientenbefundapp.labor-aachen.de"
case LABOR_BERLIN = "patientenbefundapp.mdi-limbach-berlin.de"
case LABOR_COTTBUS = "patientenbefundapp.labor-cottbus.de"
case LABOR_DESSAU = "patientenbefundapp.laborpraxis-dessau.de"
case LABOR_DORTMUND = "patientenbefundapp.labor-dortmund.de"
case LABOR_DRESDEN = "patientenbefundapp.labordresden.de"
case LABOR_ERFURT = "patientenbefundapp.labor-erfurt.de"
case LABOR_ESSEN = "patientenbefundapp.labor-eveld.de"
case LABOR_FREIBURG = "patientenbefundapp.mvz-clotten.de"
case LABOR_HANNOVER = "patientenbefundapp.labor-limbach-hannover.de"
case LABOR_HOFHEIM = "patientenbefundapp.labor-hofheim.de"
case LABOR_KARLSRUHE = "patientenbefundapp.laborvolkmann.de"
case LABOR_LEIPZIG = "patientenbefundapp.labor-leipzig.de"
case LABOR_MOENCHENGLADBACH = "patientenbefundapp.labor-stein.de"
case LABOR_MUENCHEN = "patientenbefundapp.labor-limbach-muenchen.de"
case LABOR_MUENSTER = "patientenbefundapp.labor-muenster.de"
case LABOR_NUERBERG = "patientenbefundapp.labor-limbach-nuernberg.de"
case LABOR_PASSAU = "patientenbefundapp.labor-passau.de"
case LABOR_RAVENSBURG = "patientenbefundapp.labor-gaertner.de"
case LABOR_ROSENHEIM = "patientenbefundapp.medlabor.de"
case LABOR_SCHWEINFURT = "patientenbefundapp.laboraerzte-schweinfurt.de"
case LABOR_SCHWERIN = "patientenbefundapp.labor-schwerin.de"
case LABOR_STRALSUND = "patientenbefundapp.labor-stralsund.de"
case LABOR_SUHL = "patientenbefundapp.labor-suhl.de"
case LABOR_KASSEL = "MISSING"
case LABOR_HANNOVER_MLM = "patientenbefundapp.mlh.de"
case LABOR_MAINZ = "patientenbefundapp.medgen-mainz.de"
case LABOR_FRANKFURT = "patientenbefundapp.laborarztpraxis.de"
}
}