feat: add import list & calendar

This commit is contained in:
Simon Ding
2024-09-02 23:47:19 +08:00
parent ca414a73ff
commit 361556228b
36 changed files with 3863 additions and 344 deletions

View File

@@ -23,6 +23,9 @@ func (c *Client) addSysCron() {
c.downloadAllMovies()
})
c.mustAddCron("0 0 */12 * * *", c.checkAllSeriesNewSeason)
c.mustAddCron("0 0/30 * * * *", func() {
c.periodicallyUpdateImportlist()
})
c.cron.Start()
}