feat: Built the native SwiftUI app shell mirroring the WebOS interface (Dashboard, Inventory, Oracle tabs)

This commit is contained in:
Sayan Datta
2026-03-07 17:04:53 +05:30
parent 8fe2344e71
commit cfa340cb5d
33 changed files with 6930 additions and 67 deletions

View File

@@ -1,6 +1,6 @@
import Foundation
import UIKit
import Alamofire
@preconcurrency import Alamofire
final class ComfyClient {
static let shared = ComfyClient()
@@ -45,12 +45,12 @@ final class ComfyClient {
}
}
private struct DreamWeaverRequest: Encodable {
private struct DreamWeaverRequest: Encodable, Sendable {
let imageBase64: String
let prompt: String
}
private struct DreamWeaverResponse: Decodable {
private struct DreamWeaverResponse: Decodable, Sendable {
let outputBase64: String
enum CodingKeys: String, CodingKey {