ios_app/Shared/config.swift
2025-07-12 02:41:46 +03:00

13 lines
395 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 SERVER_TIMEZONE = "GMT+3"
static let USER_AGENT = "yobble ios"
static let APP_BUILD = "freestore"
static let APP_VERSION = "0.1"
}