rustdesk/flutter/macos/Runner/AppDelegate.swift

11 lines
255 B
Swift
Raw Normal View History

import Cocoa
import FlutterMacOS
@NSApplicationMain
class AppDelegate: FlutterAppDelegate {
override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
2022-06-02 16:13:34 +08:00
dummy_method_to_enforce_bundling()
return true
}
}