2
0
mirror of https://gitlab.com/famedly/fluffychat.git synced 2025-01-05 06:22:37 +01:00
fluffychat/macos/Runner/AppDelegate.swift

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
}
}