Initial commit.

This commit is contained in:
2024-12-27 18:55:05 -08:00
commit d6e097506a
26 changed files with 1433 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
import AppKit
import Foundation
let app = NSApplication.shared
let delegate = AppDelegate()
app.delegate = delegate
_ = NSApplicationMain(CommandLine.argc, CommandLine.unsafeArgv)