Files
iKeyMon/iKeyMon/iKeyMonApp.swift
2025-04-06 13:18:39 +02:00

22 lines
350 B
Swift

//
// iKeyMonApp.swift
// iKeyMon
//
// Created by tracer on 30.03.25.
//
import SwiftUI
@main
struct iKeyMonApp: App {
var body: some Scene {
WindowGroup {
MainView()
.onDisappear {
NSApp.terminate(nil)
}
}
.windowResizability(.contentMinSize)
}
}