bitwarden-estensione-browser/src/safari/desktop/AppDelegate.swift

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
463 B
Swift
Raw Normal View History

2019-08-02 18:32:18 +02:00
import Cocoa
@main
2019-08-02 18:32:18 +02:00
class AppDelegate: NSObject, NSApplicationDelegate {
func applicationDidFinishLaunching(_ notification: Notification) {
2019-08-02 18:32:18 +02:00
// Insert code here to initialize your application
}
func applicationWillTerminate(_ notification: Notification) {
2019-08-02 18:32:18 +02:00
// Insert code here to tear down your application
}
func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
return true
}
2019-08-02 18:32:18 +02:00
}