mirror of
https://github.com/ZipArchive/ZipArchive.git
synced 2026-05-31 10:27:32 +00:00
17 lines
288 B
Swift
17 lines
288 B
Swift
//
|
|
// AppDelegate.swift
|
|
// SwiftExample_macOS
|
|
//
|
|
// Created by Antoine Cœur on 2019/4/26.
|
|
//
|
|
|
|
import Cocoa
|
|
|
|
@NSApplicationMain
|
|
class AppDelegate: NSObject, NSApplicationDelegate {
|
|
|
|
func applicationSupportsSecureRestorableState(_ app: NSApplication) -> Bool {
|
|
true
|
|
}
|
|
}
|