chore: rename to QLAppBundle

This commit is contained in:
relikd
2025-10-30 14:12:15 +01:00
parent 627b18eebe
commit 2580a85ca2
13 changed files with 96 additions and 82 deletions

20
App/AppDelegate.swift Normal file
View File

@@ -0,0 +1,20 @@
import Cocoa
@main
class AppDelegate: NSObject, NSApplicationDelegate {
@IBOutlet var window: NSWindow!
func applicationDidFinishLaunching(_ aNotification: Notification) {
// Insert code here to initialize your application
}
func applicationWillTerminate(_ aNotification: Notification) {
// Insert code here to tear down your application
}
func applicationSupportsSecureRestorableState(_ app: NSApplication) -> Bool {
return true
}
}