mirror of https://github.com/1Panel-dev/1Panel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
420 B
22 lines
420 B
package cron
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/1Panel-dev/1Panel/cron/job"
|
|
"github.com/1Panel-dev/1Panel/global"
|
|
"github.com/robfig/cron/v3"
|
|
)
|
|
|
|
func Run() {
|
|
nyc, _ := time.LoadLocation("Asia/Shanghai")
|
|
Cron := cron.New(cron.WithLocation(nyc))
|
|
_, err := Cron.AddJob("@every 1m", job.NewMonitorJob())
|
|
if err != nil {
|
|
global.LOG.Errorf("can not add corn job: %s", err.Error())
|
|
}
|
|
Cron.Start()
|
|
|
|
global.Cron = Cron
|
|
}
|