Initial Commit

This commit is contained in:
Grant Limberg 2016-05-14 13:54:49 -07:00
commit 0582338015
8 changed files with 1197 additions and 0 deletions

View file

@ -0,0 +1,27 @@
//
// 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
}
}