18 lines
551 B
Swift
18 lines
551 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.1:3000/"
|
||
//return "https://vps.aliencat.pro:8443/"
|
||
#else
|
||
return "https://vps.aliencat.pro:8443/"
|
||
#endif
|
||
}
|
||
|
||
public static let pnLettersMap: [Character: Character] = [
|
||
"А": "A", "В": "B", "Е": "E", "К": "K", "М": "M", "Н": "H", "О": "O", "Р": "P", "С": "C", "Т": "T", "У": "Y", "Х": "X"
|
||
]
|
||
}
|