mirror of
https://github.com/yattee/yattee.git
synced 2024-11-10 00:08:21 +00:00
9 lines
198 B
Swift
9 lines
198 B
Swift
import AppKit
|
|
import Foundation
|
|
|
|
final class AppDelegate: NSObject, NSApplicationDelegate {
|
|
func applicationShouldTerminateAfterLastWindowClosed(_: NSApplication) -> Bool {
|
|
true
|
|
}
|
|
}
|