Files
2018-07-26 15:04:25 +03:00

16 lines
389 B
Swift

import Cocoa
import TGPassportKit
@NSApplicationMain
class AppDelegate: NSObject, NSApplicationDelegate {
func applicationDidFinishLaunching(_ aNotification: Notification) {
TGPAppDelegate.shared().applicationDidFinishLaunching(aNotification)
}
func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
return true
}
}