Init Commit: After finish database connection.

This commit is contained in:
2025-07-19 14:13:43 +08:00
commit 56c625ee6b
14 changed files with 375 additions and 0 deletions

9
global/global.go Normal file
View File

@@ -0,0 +1,9 @@
package global
import (
"gorm.io/gorm"
)
var (
Db *gorm.DB
)