2
0
mirror of https://gitlab.com/famedly/fluffychat.git synced 2025-05-06 09:57:22 +02: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
}
}