mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-01-19 16:29:17 +08:00
45362a9819
* feat(system-upgrade): Added support for multi-host upgrade * feat: Add supports of task display for node upgrade
33 lines
713 B
Go
33 lines
713 B
Go
package global
|
|
|
|
import (
|
|
"github.com/1Panel-dev/1Panel/core/configs"
|
|
"github.com/1Panel-dev/1Panel/core/init/cache/badger_db"
|
|
"github.com/1Panel-dev/1Panel/core/init/session/psession"
|
|
"github.com/dgraph-io/badger/v4"
|
|
"github.com/go-playground/validator/v10"
|
|
"github.com/nicksnyder/go-i18n/v2/i18n"
|
|
"github.com/robfig/cron/v3"
|
|
"github.com/sirupsen/logrus"
|
|
"github.com/spf13/viper"
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
var (
|
|
DB *gorm.DB
|
|
TaskDB *gorm.DB
|
|
LOG *logrus.Logger
|
|
CONF configs.ServerConfig
|
|
VALID *validator.Validate
|
|
SESSION *psession.PSession
|
|
CACHE *badger_db.Cache
|
|
CacheDb *badger.DB
|
|
Viper *viper.Viper
|
|
|
|
I18n *i18n.Localizer
|
|
|
|
Cron *cron.Cron
|
|
|
|
BackupAccountTokenEntryID cron.EntryID
|
|
)
|