holidaycalendar/holidaycalendar/Application/main.swift
2018-12-03 16:00:51 +09:00

19 lines
401 B
Swift

//
// main.swift
// holidaycalendar
//
// Created by Ryan McGrath on 12/2/18.
// Copyright © 2018 Ryan McGrath. All rights reserved.
//
import Cocoa
autoreleasepool {
let delegate = AppDelegate()
withExtendedLifetime(delegate, {
let application = NSApplication.shared
application.delegate = delegate
application.run()
application.delegate = nil
})
}