27 lines
512 B
Swift
27 lines
512 B
Swift
//
|
|
// 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
|
|
}
|
|
|
|
|
|
}
|
|
|