aboutsummaryrefslogtreecommitdiff
path: root/safari/Junction/AppDelegate.swift
blob: 0e990a0d29d23bcf13f2f2d3e6afa49241220e1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//
//  AppDelegate.swift
//  Junction
//
//  Created by Ruben Beltran del Rio on 9/13/23.
//

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
    }

}