Files
CmdBar/src/main.swift
2024-12-27 15:30:07 -08:00

8 lines
164 B
Swift

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