mirror of
https://github.com/ente-io/ente.git
synced 2025-05-24 12:09:17 +00:00
10 lines
202 B
Swift
10 lines
202 B
Swift
import Cocoa
|
|
import FlutterMacOS
|
|
|
|
@main
|
|
class AppDelegate: FlutterAppDelegate {
|
|
override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
|
|
return false
|
|
}
|
|
}
|