wip: support safari

This commit is contained in:
reya
2023-11-27 15:08:42 +07:00
parent 89675cc986
commit 6a604d0d58
43 changed files with 1709 additions and 9 deletions

View File

@@ -0,0 +1,21 @@
//
// 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
}
}