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

13 lines
329 B
Swift

import Cocoa
@NSApplicationMain
class AppDelegate: NSObject, NSApplicationDelegate {
func applicationDidFinishLaunching(_: Notification) {
// Insert code here to initialize your application
}
func applicationWillTerminate(_: Notification) {
// Insert code here to tear down your application
}
}