autorestic/internal/cron.go

12 lines
165 B
Go
Raw Normal View History

2021-04-11 13:02:27 +00:00
package internal
func RunCron() error {
c := GetConfig()
for _, l := range c.Locations {
2021-04-11 22:17:29 +00:00
if err := l.RunCron(); err != nil {
2021-04-11 13:02:27 +00:00
return err
}
}
return nil
}