uofgcal/main.go

14 lines
213 B
Go
Raw Normal View History

2024-10-24 14:31:10 +00:00
package main
import (
2024-10-24 14:54:51 +00:00
"github.com/getlantern/systray"
"newty.dev/uofgcal/fetch"
"newty.dev/uofgcal/tray"
2024-10-24 14:31:10 +00:00
)
func main() {
2024-10-24 14:54:51 +00:00
fetch.CollectAuth()
fetch.StartScheduler()
systray.Run(tray.OnReady, tray.OnExit)
2024-10-24 14:31:10 +00:00
}