14 lines
339 B
Swift
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
|
|
}
|
|
}
|