]>
Commit | Line | Data |
---|---|---|
1 | // | |
2 | // AppDelegate.swift | |
3 | // Junction | |
4 | // | |
5 | // Created by Ruben Beltran del Rio on 9/13/23. | |
6 | // | |
7 | ||
8 | import Cocoa | |
9 | ||
10 | @main | |
11 | class AppDelegate: NSObject, NSApplicationDelegate { | |
12 | ||
13 | func applicationDidFinishLaunching(_ notification: Notification) { | |
14 | // Override point for customization after application launch. | |
15 | } | |
16 | ||
17 | func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool { | |
18 | return true | |
19 | } | |
20 | ||
21 | } |