27 lines
511 B
Swift
27 lines
511 B
Swift
//
|
|
// AppDelegate.swift
|
|
// dotBeatBar_old
|
|
//
|
|
// Created by Aaron Bieber on 7/26/19.
|
|
// Copyright © 2019 Aaron Bieber. 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
|
|
}
|
|
|
|
|
|
}
|
|
|