ios_app/Shared/config.swift
2025-06-11 07:54:16 +03:00

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