uofgcal/main.go

13 lines
202 B
Go
Raw Permalink Normal View History

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