12 lines
202 B
Go
12 lines
202 B
Go
package main
|
|
|
|
import (
|
|
"git.newty.dev/uofgsync/fetch"
|
|
"git.newty.dev/uofgsync/tray"
|
|
"github.com/getlantern/systray"
|
|
)
|
|
|
|
func main() {
|
|
fetch.StartScheduler()
|
|
systray.Run(tray.OnReady, tray.OnExit)
|
|
}
|