28 lines
552 B
Swift
28 lines
552 B
Swift
|
|
//
|
||
|
|
// AppDelegate.swift
|
||
|
|
// ZeroTier One
|
||
|
|
//
|
||
|
|
// Created by Grant Limberg on 5/14/16.
|
||
|
|
// Copyright © 2016 ZeroTier, Inc. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
import Cocoa
|
||
|
|
|
||
|
|
@NSApplicationMain
|
||
|
|
class AppDelegate: NSObject, NSApplicationDelegate {
|
||
|
|
|
||
|
|
@IBOutlet weak var window: NSWindow!
|
||
|
|
|
||
|
|
|
||
|
|
func applicationDidFinishLaunching(aNotification: NSNotification) {
|
||
|
|
// Insert code here to initialize your application
|
||
|
|
}
|
||
|
|
|
||
|
|
func applicationWillTerminate(aNotification: NSNotification) {
|
||
|
|
// Insert code here to tear down your application
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
}
|
||
|
|
|