Files
tcms/macclient/Sources/TCMSMacClient/TCMSMacClientApp.swift
T
2026-07-05 15:58:51 -04:00

12 lines
201 B
Swift

import SwiftUI
@main
struct TCMSMacClientApp: App {
var body: some Scene {
WindowGroup {
ContentView()
.frame(minWidth: 1040, minHeight: 680)
}
}
}