1Panel/agent/global/global.go

35 lines
727 B
Go
Raw Normal View History

2024-07-23 14:48:37 +08:00
package global
import (
"github.com/1Panel-dev/1Panel/agent/configs"
"github.com/1Panel-dev/1Panel/agent/init/cache/badger_db"
"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
MonitorDB *gorm.DB
TaskDB *gorm.DB
CoreDB *gorm.DB
2024-07-23 14:48:37 +08:00
LOG *logrus.Logger
CONF configs.ServerConfig
VALID *validator.Validate
CACHE *badger_db.Cache
CacheDb *badger.DB
Viper *viper.Viper
Cron *cron.Cron
MonitorCronID cron.EntryID
OneDriveCronID cron.EntryID
IsMaster bool
2024-07-29 14:13:47 +08:00
2024-07-23 14:48:37 +08:00
I18n *i18n.Localizer
)