mirror of
https://github.com/lihaoyun6/AirBattery.git
synced 2025-11-26 03:45:11 +08:00
14 lines
211 B
Swift
14 lines
211 B
Swift
//
|
|
// main.swift
|
|
// AirBatteryHelper
|
|
//
|
|
// Created by apple on 2024/3/17.
|
|
//
|
|
|
|
import Cocoa
|
|
|
|
private let app = NSApplication.shared
|
|
private let delegate = HelperAppDelegate()
|
|
app.delegate = delegate
|
|
app.run()
|