1
0
mirror of https://github.com/git-touch/git-touch synced 2025-02-09 08:08:48 +01:00
Shreyas Thirumalai acd608e230
add macos files (#90)
#69
2020-05-15 18:37:12 +08:00

10 lines
214 B
Swift

import Cocoa
import FlutterMacOS
@NSApplicationMain
class AppDelegate: FlutterAppDelegate {
override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
return true
}
}