mirror of
https://gitee.com/XM-GO/PandaX.git
synced 2026-04-23 02:48:34 +08:00
14 lines
185 B
Go
14 lines
185 B
Go
package global
|
|
|
|
import (
|
|
"github.com/sirupsen/logrus"
|
|
"gorm.io/gorm"
|
|
"pandax/base/config"
|
|
)
|
|
|
|
var (
|
|
Log *logrus.Logger // 日志
|
|
Db *gorm.DB // gorm
|
|
Conf *config.Config
|
|
)
|