Add stub for Footprint update service

This commit is contained in:
Jan Eitzinger 2024-08-29 08:45:04 +02:00
parent 5b03cf826b
commit 7c51d88501

View File

@ -4,5 +4,22 @@
// license that can be found in the LICENSE file.
package taskManager
import (
"time"
"github.com/ClusterCockpit/cc-backend/pkg/log"
"github.com/go-co-op/gocron/v2"
)
func registerFootprintWorker() {
log.Info("Register Footprint Update service")
d, _ := time.ParseDuration("10m")
s.NewJob(gocron.DurationJob(d),
gocron.NewTask(
func() {
t := time.Now()
log.Printf("Update Footprints started at %s", t.Format(time.RFC3339))
log.Print("Update Footprints done")
}))
}