1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-01-19 16:29:17 +08:00
1Panel/backend/init/business/business.go

22 lines
552 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"
"github.com/1Panel-dev/1Panel/backend/utils/common"
2022-11-23 17:44:24 +08:00
)
func Init() {
setting, err := service.NewISettingService().GetSettingInfo()
if err != nil {
global.LOG.Errorf("sync app error: %s", err.Error())
}
if common.CompareVersion(setting.AppStoreVersion, "0.0") {
return
}
2022-11-23 17:44:24 +08:00
appService := service.AppService{}
if err := appService.SyncAppList(); err != nil {
global.LOG.Errorf("sync app error: %s", err.Error())
}
}