12 lines
118 B
Go
Executable File
12 lines
118 B
Go
Executable File
package entity
|
|
|
|
import (
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
type GloablConfig struct {
|
|
DB *gorm.DB
|
|
}
|
|
|
|
var CONGIG = new(GloablConfig)
|