- Create Shared/Cloud/Config.swift with shared BLPlatformConfig for ChronoMind - Create Shared/Cloud/KillSwitchService.swift thin wrapper over BLKillSwitchClient Part of Mobile DRY Refactoring Roadmap Phase 9A.
14 lines
520 B
Swift
14 lines
520 B
Swift
// ── ChronoMind Platform Config ──────────────────────────────
|
|
// Single source of truth for BLPlatformConfig used by all SDK wrappers.
|
|
|
|
import ByteLystPlatformSDK
|
|
|
|
enum ChronoMindConfig {
|
|
static let platform: BLPlatformConfig = BLPlatformConfig.fromInfoPlist(
|
|
productId: "chronomind",
|
|
defaultBaseURL: "https://api.chronomind.app",
|
|
bundleId: "com.saravana.chronomind",
|
|
appGroupId: "group.com.chronomind.shared"
|
|
)
|
|
}
|