// // AppDelegate.swift // keyDownViewController // // Created by lsd on 9/9/15. // Copyright © 2015 inDabusiness. All rights reserved. //

import Cocoa

@NSApplicationMain class AppDelegate: NSObject, NSApplicationDelegate {

func applicationDidFinishLaunching(_ aNotification: Notification) {
    // Insert code here to initialize your application

// NSEvent.addLocalMonitorForEventsMatchingMask(.KeyDownMask) { (aEvent) -> NSEvent? in // return aEvent // }

}

func applicationWillTerminate(_ aNotification: Notification) {
    // Insert code here to tear down your application
}

}