Files
nostr-connect/Nostr Connect/macOS (App)/AppDelegate.swift
2023-11-28 08:10:12 +07:00

22 lines
427 B
Swift

//
// AppDelegate.swift
// macOS (App)
//
// Created by Phong on 28/11/2023.
//
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
}
}