mirror of
https://github.com/hensm/fx_cast.git
synced 2026-06-09 00:59:59 +00:00
11 lines
145 B
Swift
11 lines
145 B
Swift
import Cocoa
|
|
|
|
|
|
let app = NSApplication.shared
|
|
|
|
let delegate = AppDelegate()
|
|
app.delegate = delegate
|
|
|
|
app.setActivationPolicy(.regular)
|
|
app.run()
|