feat: Role 增删改查

This commit is contained in:
Blizzard
2025-05-11 22:54:11 +08:00
parent ab51ba91bc
commit 2ec091bf59
9 changed files with 194 additions and 0 deletions
+1
View File
@@ -35,6 +35,7 @@ func Routers() {
//需要鉴权的路由
systemRouter.InitUserRouter(NeedAuthGroup) //用户相关
systemRouter.InitClientRouter(NeedAuthGroup) //客户端相关
systemRouter.InitRoleRouter(NeedAuthGroup) //角色相关
}
address := fmt.Sprintf(":%d", global.Config.System.Addr)