2
0
mirror of https://gitlab.com/famedly/fluffychat.git synced 2025-03-12 03:30:39 +01:00
2020-09-26 21:22:49 +02:00

10 lines
214 B
Swift

import Cocoa
import FlutterMacOS
@NSApplicationMain
class AppDelegate: FlutterAppDelegate {
override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
return true
}
}