Files
ICCery-CPU/Sources/main.swift
T
Local Admin 43bff18101
Build macOS Packages / Build macOS (Intel) (push) Failing after 10s
Build macOS Packages / Build macOS (Apple Silicon) (push) Failing after 10s
Build macOS Packages / Build macOS (Universal) (push) Skipped
removed cruft and restructured.
2026-09-07 05:21:44 -07:00

10 lines
334 B
Swift

import AppKit
// SPEC §2: always a full AppKit GUI application. Even with --job it owns
// its own run loop and presents UI. Never a pure CLI tool.
let delegate = AppDelegate()
NSApplication.shared.delegate = delegate
delegate.consumeArguments(CommandLine.arguments)
_ = NSApplicationMain(CommandLine.argc, CommandLine.unsafeArgv)