package timer import ( "github.com/robfig/cron/v3" "code.gitea.io/gitea/routers/repo" ) func init() { c := cron.New() spec := "*/10 * * * *" c.AddFunc(spec, repo.HandleUnDecompressAttachment) c.Start() }
No Description