Refactor command client

This commit is contained in:
世界
2023-08-15 17:20:44 +08:00
parent 1ac5df7f72
commit dbd8700145
20 changed files with 378 additions and 572 deletions
+4
View File
@@ -1,12 +1,16 @@
import Foundation
import Library
import SwiftUI
@main
struct Application: App {
@UIApplicationDelegateAdaptor private var appDelegate: ApplicationDelegate
@StateObject private var environments = ExtensionEnvironments()
var body: some Scene {
WindowGroup {
MainView()
.environmentObject(environments)
}
}
}