Files
nCovTrack-Backend/global/global.go
fallen-angle 0a5379c8f3 Init Project
2022-01-12 18:42:07 +08:00

13 lines
142 B
Go

package global
import (
"nCovTrack-Backend/config"
"gorm.io/gorm"
)
var (
ServerSettings config.ServerConfig
Db *gorm.DB
)