Init Project

This commit is contained in:
fallen-angle
2022-01-12 18:42:07 +08:00
commit 0a5379c8f3
11 changed files with 710 additions and 0 deletions

12
global/global.go Normal file
View File

@@ -0,0 +1,12 @@
package global
import (
"nCovTrack-Backend/config"
"gorm.io/gorm"
)
var (
ServerSettings config.ServerConfig
Db *gorm.DB
)