第 1 阶段:用户与认证, mock登陆ok

This commit is contained in:
yml
2026-05-22 15:21:36 +08:00
parent 8e7f1f17f0
commit 9a79603e10
21 changed files with 780 additions and 4 deletions
+11
View File
@@ -0,0 +1,11 @@
package router
import (
"github.com/redis/go-redis/v9"
"gorm.io/gorm"
)
type Dependencies struct {
DB *gorm.DB
Redis *redis.Client
}