mirror of
https://github.com/zhigang1992/InTime.git
synced 2026-03-27 00:54:16 +08:00
26 lines
524 B
Swift
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
|
|
}
|
|
|
|
|
|
}
|
|
|