1Panel/backend/init/business/business.go

24 lines
570 B
Go
Raw Normal View History

2022-11-23 17:44:24 +08:00
package business
import (
"github.com/1Panel-dev/1Panel/backend/app/service"
"github.com/1Panel-dev/1Panel/backend/global"
)
func Init() {
setting, err := service.NewISettingService().GetSettingInfo()
if err != nil {
global.LOG.Errorf("sync app error: %s", err.Error())
return
}
2023-02-17 16:21:13 +08:00
if setting.AppStoreVersion != "" {
global.LOG.Info("do not sync")
return
}
global.LOG.Info("sync app start...")
2023-02-13 15:46:14 +08:00
if err := service.NewIAppService().SyncAppList(); err != nil {
2022-11-23 17:44:24 +08:00
global.LOG.Errorf("sync app error: %s", err.Error())
}
global.LOG.Info("sync app success")
2022-11-23 17:44:24 +08:00
}