2
0
mirror of https://gitlab.com/famedly/fluffychat.git synced 2025-02-23 01:30:41 +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
}
}