Files
s-ui/cronjob/checkCoreJob.go
T

18 lines
264 B
Go
Raw Normal View History

2026-05-10 06:41:44 +00:00
package cronjob
import (
2026-05-10 14:56:03 +08:00
"github.com/admin8800/s-ui/service"
2026-05-10 06:41:44 +00:00
)
type CheckCoreJob struct {
service.ConfigService
}
func NewCheckCoreJob() *CheckCoreJob {
return &CheckCoreJob{}
}
func (s *CheckCoreJob) Run() {
s.ConfigService.StartCore()
}