AppDelegate.swift 347 B

123456789101112131415161718
  1. import Cocoa
  2. @NSApplicationMain
  3. class AppDelegate: NSObject, NSApplicationDelegate {
  4. func applicationDidFinishLaunching(_ aNotification: Notification) {
  5. // Insert code here to initialize your application
  6. }
  7. func applicationWillTerminate(_ aNotification: Notification) {
  8. // Insert code here to tear down your application
  9. }
  10. }