TabFS/extension/safari/TabFS/TabFS/AppDelegate.swift
Omar Rizwan f5b00deb7e safari: initial commit.
this is just the output of `xcrun safari-web-extension-converter .` in
`extension/`

it doesn't work yet (well, it runs without any errors, but it doesn't
know to invoke the tabfs process; it just talks to the stub app from
the generator)
2021-01-31 13:48:26 -08:00

22 lines
452 B
Swift

//
// AppDelegate.swift
// TabFS
//
// Created by Omar Rizwan on 1/31/21.
//
import Cocoa
@NSApplicationMain
class AppDelegate: NSObject, NSApplicationDelegate {
func applicationDidFinishLaunching(_ aNotification: Notification) {
// Insert code here to initialize your application
}
func applicationWillTerminate(_ aNotification: Notification) {
// Insert code here to tear down your application
}
}