downloader/main.go

30 lines
615 B
Go
Raw Normal View History

2022-08-15 15:55:27 +02:00
package main
import (
"fmt"
"time"
"git.milar.in/nyaanime/logic"
2022-08-15 15:55:27 +02:00
)
func main() {
2022-08-25 18:13:29 +02:00
fmt.Println("generated priority values:")
fmt.Print(Map2Table("language", logic.PreferredLanguages))
fmt.Print(Map2Table("subtitle", logic.PreferredSubtitles))
fmt.Print(Map2Table("resolution", logic.PreferredResolutions))
2022-08-25 18:13:29 +02:00
fmt.Println()
2022-08-21 21:14:44 +02:00
2022-08-15 15:55:27 +02:00
// get access token once at startup to be sure that an access token is obtainable at all
if _, err := logic.GetAnilistAccessToken(); err != nil {
2022-08-15 15:55:27 +02:00
panic(err)
}
ticker := time.NewTicker(PollRate)
defer ticker.Stop()
CheckTorrents()
2022-08-15 15:55:27 +02:00
for range ticker.C {
CheckTorrents()
2022-08-15 15:55:27 +02:00
}
}