21 lines
768 B
Swift
21 lines
768 B
Swift
import SwiftUI
|
|
|
|
struct AppConfig {
|
|
static var DEBUG: Bool = true
|
|
//static let SERVICE = Bundle.main.bundleIdentifier ?? "default.service"
|
|
static let PROTOCOL = "https"
|
|
static let API_SERVER = "\(PROTOCOL)://api.yobble.org"
|
|
static let SOCKET_PATH = "/socket.io/"
|
|
static let SOCKET_HEARTBEAT_EVENT = "client_message"
|
|
|
|
static let USER_AGENT = "yobble ios"
|
|
static let APP_BUILD = "appstore" // appstore / freestore
|
|
static let APP_VERSION = "0.1"
|
|
}
|
|
|
|
struct AppInfo {
|
|
static let text_1 = "\(NSLocalizedString("profile_down_text_1", comment: "")) yobble"
|
|
static let text_2 = "\(NSLocalizedString("profile_down_text_2", comment: "")) 0.1test"
|
|
static let text_3 = "\(NSLocalizedString("profile_down_text_3", comment: ""))2025"
|
|
}
|