aboutsummaryrefslogtreecommitdiff
path: root/safari/Junction/AppDelegate.swift
diff options
context:
space:
mode:
Diffstat (limited to 'safari/Junction/AppDelegate.swift')
-rw-r--r--safari/Junction/AppDelegate.swift21
1 files changed, 21 insertions, 0 deletions
diff --git a/safari/Junction/AppDelegate.swift b/safari/Junction/AppDelegate.swift
new file mode 100644
index 0000000..0e990a0
--- /dev/null
+++ b/safari/Junction/AppDelegate.swift
@@ -0,0 +1,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
+ }
+
+}