You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
512 B
26 lines
512 B
// |
|
// AppDelegate.swift |
|
// Example_OSX_App |
|
// |
|
// Created by Joseph Henry on 6/22/16. |
|
// Copyright © 2016 ZeroTier Inc. All rights reserved. |
|
// |
|
|
|
import Cocoa |
|
|
|
@NSApplicationMain |
|
class AppDelegate: NSObject, NSApplicationDelegate { |
|
|
|
|
|
|
|
func applicationDidFinishLaunching(aNotification: NSNotification) { |
|
// Insert code here to initialize your application |
|
} |
|
|
|
func applicationWillTerminate(aNotification: NSNotification) { |
|
// Insert code here to tear down your application |
|
} |
|
|
|
|
|
} |
|
|
|
|