mirror of
https://github.com/morgan9e/macos-stats
synced 2026-04-14 00:04:15 +09:00
* v2.0.0 * rewritten application from scratch * new Settings * new custom popup view * moved to own implementation of chart * added more option to configure a widget * now each module has own widget in the menu bar * a lot of new features...
16 lines
270 B
Swift
16 lines
270 B
Swift
//
|
|
// main.swift
|
|
// Stats
|
|
//
|
|
// Created by Serhiy Mytrovtsiy on 10/04/2020.
|
|
// Copyright © 2020 Serhiy Mytrovtsiy. All rights reserved.
|
|
//
|
|
|
|
import Cocoa
|
|
|
|
private let app = NSApplication.shared
|
|
private let delegate = AppDelegate()
|
|
|
|
app.delegate = delegate
|
|
app.run()
|