Files
nostash/macOS (App)/AppDelegate.swift
2023-01-11 21:33:45 -05:00

22 lines
429 B
Swift

//
// 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
}
}