diff --git a/ios/ChronoMind/Shared/Cloud/KillSwitchService.swift b/ios/ChronoMind/Shared/Cloud/KillSwitchService.swift index 731e114..978151a 100644 --- a/ios/ChronoMind/Shared/Cloud/KillSwitchService.swift +++ b/ios/ChronoMind/Shared/Cloud/KillSwitchService.swift @@ -6,7 +6,10 @@ import ByteLystPlatformSDK enum KillSwitchService { private static let client = BLKillSwitchClient(config: ChronoMindConfig.platform) - static func check() async -> BLKillSwitchResult { + static var isDisabled: Bool { client.isDisabled } + static var maintenanceMessage: String { client.maintenanceMessage } + + static func check() async { await client.check() } }