feat: 首次提交,添加Web界面和Redis支持的数据管理系统

This commit is contained in:
2025-09-01 00:45:37 +08:00
parent 7abb872b2c
commit b9fbe07b70
30 changed files with 4970 additions and 0 deletions

10
global/global.go Normal file
View File

@@ -0,0 +1,10 @@
package global
import (
"context"
"github.com/redis/go-redis/v9"
)
var RDB *redis.Client
var RCtx = context.Background()