NetNewsWire/Evergreen/AppDelegate.swift

27 lines
488 B
Swift
Raw Normal View History

2017-05-22 22:00:45 +02:00
//
// AppDelegate.swift
// Evergreen
//
// Created by Brent Simmons on 5/22/17.
// Copyright © 2017 Ranchero Software. All rights reserved.
//
import Cocoa
@NSApplicationMain
class AppDelegate: NSObject, NSApplicationDelegate {
func applicationDidFinishLaunching(_ aNotification: Notification) {
// Insert code here to initialize your application
}
func applicationWillTerminate(_ aNotification: Notification) {
// Insert code here to tear down your application
}
}