数据结构优化

This commit is contained in:
李琦
2026-01-19 16:14:08 +08:00
parent 6d789c7c2a
commit 68c4c6df1c
36 changed files with 4063 additions and 760 deletions

View File

@@ -13,7 +13,7 @@ import (
var DB *gorm.DB
// JWTSecret is the secret key used for signing JWT tokens
var JWTSecret = "your-secret-key-change-this-in-production" // Default value
var JWTSecret = "your-secret-key" // Default value, should be set via JWT_SECRET environment variable in production
func InitDB() {
var err error