mirror of
https://github.com/qvacua/vimr.git
synced 2024-12-01 01:32:04 +03:00
20 lines
404 B
Swift
20 lines
404 B
Swift
/**
|
|
* Tae Won Ha - http://taewon.de - @hataewon
|
|
* See LICENSE
|
|
*/
|
|
|
|
import Cocoa
|
|
|
|
@main
|
|
class AppDelegate: NSObject, NSApplicationDelegate {
|
|
@IBOutlet var window: NSWindow!
|
|
|
|
func applicationDidFinishLaunching(_: Notification) {
|
|
// Insert code here to initialize your application
|
|
}
|
|
|
|
func applicationWillTerminate(_: Notification) {
|
|
// Insert code here to tear down your application
|
|
}
|
|
}
|