AutoCat2/Shared/Utils/Constants.swift
2021-07-07 20:10:13 +03:00

14 lines
339 B
Swift

import Foundation
public struct Constants {
public static var baseUrl: String {
#if DEBUG
//return "http://127.0.0.1:3000/"
//return "http://192.168.1.67:3000/"
return "https://vps.aliencat.pro:8443/"
#else
return "https://vps.aliencat.pro:8443/"
#endif
}
}