// ── Kill Switch Service ────────────────────────────────────── // Thin wrapper over ByteLystPlatformSDK's BLKillSwitchClient. import ByteLystPlatformSDK enum KillSwitchService { private static let client = BLKillSwitchClient(config: ChronoMindConfig.platform) static var isDisabled: Bool { client.isDisabled } static var maintenanceMessage: String { client.maintenanceMessage } static func check() async { await client.check() } }