Files
nostr-connect/Nostr Connect/macOS (App)/AppDelegate.swift
2023-11-27 15:08:42 +07:00

22 lines
427 B
Swift

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