You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
397 B

package router
import (
"github.com/gin-gonic/gin"
"github.com/zggsong/gin-vue-demo/controller"
"github.com/zggsong/gin-vue-demo/middleware"
)
func CollectRoute(r *gin.Engine) *gin.Engine {
r.POST("/auth/register", controller.Register)
r.POST("/auth/login", controller.Login)
r.GET("/auth/info", middleware.AuthMiddleWare(), controller.Info) // 认证中间件保护info接口
return r
}