- API, Mac client

This commit is contained in:
Ty Clifford
2026-07-05 15:58:51 -04:00
parent 9dbd29d8aa
commit 729b29276f
14 changed files with 1682 additions and 1 deletions
@@ -0,0 +1,11 @@
import SwiftUI
@main
struct TCMSMacClientApp: App {
var body: some Scene {
WindowGroup {
ContentView()
.frame(minWidth: 1040, minHeight: 680)
}
}
}