Files
Yonas Kolb 1631236b7a format_code
2018-11-04 22:30:34 +11:00

14 lines
358 B
Swift

import Cocoa
@NSApplicationMain
class AppDelegate: NSObject, NSApplicationDelegate {
func applicationDidFinishLaunching(_ aNotification: Notification) {
// Insert code here to initialize your application
}
func applicationWillTerminate(_ aNotification: Notification) {
// Insert code here to tear down your application
}
}