2024-10-24 14:31:10 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2024-10-25 13:19:42 +00:00
|
|
|
"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
|
|
|
}
|