Files
macos-stats/Stats/Supporting Files/main.swift
Serhiy Mytrovtsiy 4d6f759d3b v2.0.0 (#34)
* 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...
2020-06-07 12:22:32 +02:00

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()