From 4a191e8036581893bf5f4cfb284770d1bfe9a807 Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Wed, 13 Sep 2023 18:39:01 +0200 Subject: Add safari code --- safari/Junction/AppDelegate.swift | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 safari/Junction/AppDelegate.swift (limited to 'safari/Junction/AppDelegate.swift') 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 + } + +} -- cgit