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

13 lines
329 B
Swift
Raw Normal View History

2019-08-02 18:32:18 +02:00
import Cocoa
@NSApplicationMain
class AppDelegate: NSObject, NSApplicationDelegate {
2019-08-19 15:22:19 +02:00
func applicationDidFinishLaunching(_: Notification) {
2019-08-02 18:32:18 +02:00
// Insert code here to initialize your application
}
2019-08-19 15:22:19 +02:00
func applicationWillTerminate(_: Notification) {
2019-08-02 18:32:18 +02:00
// Insert code here to tear down your application
}
}