mirror of
https://github.com/nicoverbruggen/phpmon.git
synced 2025-08-07 03:50:08 +02:00
15 lines
325 B
Swift
15 lines
325 B
Swift
//
|
|
// AppDelegate.swift
|
|
// PHP Monitor Self-Updater
|
|
//
|
|
// Created by Nico Verbruggen on 01/02/2023.
|
|
// Copyright © 2023 Nico Verbruggen. All rights reserved.
|
|
//
|
|
|
|
import Cocoa
|
|
|
|
let app = NSApplication.shared
|
|
let delegate = Updater()
|
|
app.delegate = delegate
|
|
_ = NSApplicationMain(CommandLine.argc, CommandLine.unsafeArgv)
|