downloader/main.go

26 lines
534 B
Go
Raw Normal View History

2022-08-15 15:55:27 +02:00
package main
import (
"fmt"
"time"
)
func main() {
2022-08-21 21:36:44 +02:00
fmt.Println("language priorites:", Map2Str(PreferredLanguages))
fmt.Println("subtitle priorites:", Map2Str(PreferredSubtitles))
fmt.Println("resolution priorites:", Map2Str(PreferredResolutions))
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 := GetAnilistAccessToken(); err != nil {
panic(err)
}
ticker := time.NewTicker(PollRate)
defer ticker.Stop()
checkTorrents()
for range ticker.C {
checkTorrents()
}
}