Files
ProjectOctopus/agent-go/entity/global.go
2023-03-07 17:32:35 +08:00

12 lines
118 B
Go

package entity
import (
"gorm.io/gorm"
)
type GloablConfig struct {
DB *gorm.DB
}
var CONGIG = new(GloablConfig)