13 lines
213 B
Go
13 lines
213 B
Go
package main
|
|
|
|
import (
|
|
"github.com/getlantern/systray"
|
|
"newty.dev/uofgcal/fetch"
|
|
"newty.dev/uofgcal/tray"
|
|
)
|
|
|
|
func main() {
|
|
fetch.CollectAuth()
|
|
fetch.StartScheduler()
|
|
systray.Run(tray.OnReady, tray.OnExit)
|
|
}
|