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.
17 lines
381 B
17 lines
381 B
package router
|
|
|
|
import (
|
|
"gin-vue-admin/api/v1"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func InitBaseRouter(Router *gin.RouterGroup) (R gin.IRoutes) {
|
|
BaseRouter := Router.Group("base")
|
|
{
|
|
BaseRouter.POST("register", v1.Register)
|
|
BaseRouter.POST("login", v1.Login)
|
|
BaseRouter.POST("captcha", v1.Captcha)
|
|
BaseRouter.GET("captcha/:captchaId", v1.CaptchaImg)
|
|
}
|
|
return BaseRouter
|
|
}
|