CLI: remove relay/heartbeat legacy commands

This commit is contained in:
Peter Steinberger
2025-12-09 15:06:44 +01:00
parent 172ce6c79f
commit d1217e84c7
4 changed files with 263 additions and 775 deletions

View File

@@ -182,7 +182,7 @@ actor GatewayChannel {
self.inner = GatewayChannelActor(url: url, token: token)
}
func request(method: String, params: [String: Any]?) async throws -> Data {
func request(method: String, params: [String: AnyCodable]?) async throws -> Data {
guard let inner else {
throw NSError(domain: "Gateway", code: 0, userInfo: [NSLocalizedDescriptionKey: "not configured"])
}