This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
zhangyang-libzt/integrations/apple/example_app/OSX/Example_OSX_App/AppDelegate.swift

27 lines
512 B
Swift

//
// 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
}
}