/** * Tae Won Ha - http://taewon.de - @hataewon * See LICENSE */ import Cocoa @main class AppDelegate: NSObject, NSApplicationDelegate { @IBOutlet var window: NSWindow! func applicationDidFinishLaunching(_: Notification) { // Insert code here to initialize your application } func applicationWillTerminate(_: Notification) { // Insert code here to tear down your application } }