mirror of
https://github.com/nkcmr/HyperTab.git
synced 2026-01-11 20:00:31 +01:00
22 lines
434 B
Swift
22 lines
434 B
Swift
//
|
|
// AppDelegate.swift
|
|
// macOS (App)
|
|
//
|
|
// Created by Nicholas Comer on 11/18/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
|
|
}
|
|
|
|
}
|