Files
2024-06-14 10:37:40 +08:00

12 lines
118 B
Go
Executable File

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