mirror of
https://github.com/git-touch/git-touch
synced 2024-12-16 10:20:55 +01:00
10 lines
214 B
Swift
10 lines
214 B
Swift
import Cocoa
|
|
import FlutterMacOS
|
|
|
|
@NSApplicationMain
|
|
class AppDelegate: FlutterAppDelegate {
|
|
override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
|
|
return true
|
|
}
|
|
}
|