feat: added Remote module that allows remote monitoring of the system (not publicly available since it's in the early stage)

This commit is contained in:
Serhiy Mytrovtsiy
2025-03-22 12:59:23 +01:00
parent 75912f513a
commit 69ccc54910
11 changed files with 732 additions and 12 deletions

View File

@@ -278,6 +278,8 @@ public extension Notification.Name {
static let pause = Notification.Name("pause")
static let toggleFanControl = Notification.Name("toggleFanControl")
static let combinedModulesPopup = Notification.Name("combinedModulesPopup")
static let remoteLoginSuccess = Notification.Name("remoteLoginSuccess")
static let remoteState = Notification.Name("remoteState")
}
public var isARM: Bool {
@@ -411,3 +413,8 @@ public enum RAMPressure: String, Codable {
}
}
}
public struct TokenResponse: Codable {
public let access_token: String
public let refresh_token: String
}