1234567891011121314151617181920212223242526 |
- //
- // AppDelegate.swift
- // SwiftyMarkdownExample macOS
- //
- // Created by Simon Fairbairn on 01/02/2020.
- // Copyright © 2020 Voyage Travel Apps. All rights reserved.
- //
- 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
- }
- }
|