tokenary/Encrypted Ink/AppDelegate.swift
2021-06-12 20:37:56 +03:00

15 lines
277 B
Swift

// Copyright © 2021 Encrypted Ink. All rights reserved.
import Cocoa
@NSApplicationMain
class AppDelegate: NSObject, NSApplicationDelegate {
let agent = Agent()
func applicationDidFinishLaunching(_ aNotification: Notification) {
agent.start()
}
}