This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
Files
schisandra-cloud-album/router/modules/auth_user_router.go
landaiqing 9b36d2fff0 add swagger
2024-08-05 15:44:33 +08:00

14 lines
240 B
Go

package modules
import (
"github.com/gin-gonic/gin"
"schisandra-cloud-album/api"
)
var authApi = api.Api.AuthApi
func AuthRouter(router *gin.RouterGroup) {
group := router.Group("auth")
group.GET("/user/List", authApi.GetUserList)
}