AppDelegate.swift 512 B

1234567891011121314151617181920212223242526
  1. //
  2. // AppDelegate.swift
  3. // SwiftyMarkdownExample macOS
  4. //
  5. // Created by Simon Fairbairn on 01/02/2020.
  6. // Copyright © 2020 Voyage Travel Apps. All rights reserved.
  7. //
  8. import Cocoa
  9. @NSApplicationMain
  10. class AppDelegate: NSObject, NSApplicationDelegate {
  11. func applicationDidFinishLaunching(_ aNotification: Notification) {
  12. // Insert code here to initialize your application
  13. }
  14. func applicationWillTerminate(_ aNotification: Notification) {
  15. // Insert code here to tear down your application
  16. }
  17. }