mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-14 11:37:29 +08:00
20 lines
469 B
Go
20 lines
469 B
Go
package job
|
|
|
|
import (
|
|
"github.com/1Panel-dev/1Panel/backend/app/service"
|
|
"github.com/1Panel-dev/1Panel/backend/global"
|
|
)
|
|
|
|
type app struct{}
|
|
|
|
func NewAppStoreJob() *app {
|
|
return &app{}
|
|
}
|
|
|
|
func (a *app) Run() {
|
|
global.LOG.Info("AppStore scheduled task in progress ...")
|
|
if err := service.NewIAppService().SyncAppListFromRemote(); err != nil {
|
|
global.LOG.Errorf("AppStore sync failed %s", err.Error())
|
|
}
|
|
global.LOG.Info("AppStore scheduled task has completed")
|
|
}
|