12345678910111213141516171819202122232425 |
- //
- // AppDelegate.swift
- // MacTerminal
- //
- // Created by Miguel de Icaza on 3/11/20.
- // Copyright © 2020 Miguel de Icaza. All rights reserved.
- //
- import Cocoa
- import SwiftTerm
- @NSApplicationMain
- class AppDelegate: NSObject, NSApplicationDelegate {
- @IBOutlet var loggingMenuItem: NSMenuItem?
- func applicationDidFinishLaunching(_ aNotification: Notification) {
- // Insert code here to initialize your application
- }
- func applicationWillTerminate(_ aNotification: Notification) {
- // Insert code here to tear down your application
- }
- }
|