// // AppDelegate.swift // macOS (App) // // Created by Ryan Breen on 1/11/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 } }