16 lines
389 B
Swift
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
|
|
}
|
|
|
|
}
|