mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
25 lines
487 B
Go
25 lines
487 B
Go
package tasks
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/astaxie/beego"
|
|
"github.com/astaxie/beego/toolbox"
|
|
"github.com/cloudsonic/sonic-server/scanner"
|
|
)
|
|
|
|
const TaskItunesScan = "iTunes Library Scanner"
|
|
|
|
func init() {
|
|
scan := toolbox.NewTask(TaskItunesScan, "0/5 * * * * *", func() error {
|
|
scanner.CheckForUpdates(false)
|
|
return nil
|
|
})
|
|
|
|
toolbox.AddTask(TaskItunesScan, scan)
|
|
go func() {
|
|
time.Sleep(20 * time.Second)
|
|
beego.Debug("Starting", TaskItunesScan)
|
|
toolbox.StartTask()
|
|
}()
|
|
}
|