2
0
mirror of https://gitlab.com/famedly/fluffychat.git synced 2025-03-06 07:30:41 +01:00

10 lines
214 B
Swift
Raw Normal View History

2020-09-26 20:27:15 +02:00
import Cocoa
import FlutterMacOS
@NSApplicationMain
class AppDelegate: FlutterAppDelegate {
override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
return true
}
}