Files
Grapp/src/main.swift
T
2024-12-27 18:55:05 -08:00

9 lines
182 B
Swift

import AppKit
import Foundation
let app = NSApplication.shared
let delegate = AppDelegate()
app.delegate = delegate
_ = NSApplicationMain(CommandLine.argc, CommandLine.unsafeArgv)