Files
InTime/FloatingToggl/AppDelegate.swift
2017-10-25 17:48:15 +08:00

26 lines
524 B
Swift

//
// AppDelegate.swift
// FloatingToggl
//
// Created by Zhigang Fang on 10/24/17.
// Copyright © 2017 matrix. All rights reserved.
//
import Cocoa
import KeychainSwift
@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
}
}