aboutsummaryrefslogtreecommitdiff
path: root/safari/Junction/AppDelegate.swift
blob: a2cd9a3e650c23ccfe158ca5d11b034641dfb7ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import Cocoa

@main
class AppDelegate: NSObject, NSApplicationDelegate {

    func applicationDidFinishLaunching(_ notification: Notification) {
        // Override point for customization after application launch.
    }

    func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
        return true
    }

}