|
package system
|
|
|
|
import "github.com/gin-gonic/gin"
|
|
|
|
type BaseRouter struct{}
|
|
|
|
func (r *BaseRouter) InitBaseRouter(Router *gin.RouterGroup) {
|
|
baseRouter := Router.Group("base")
|
|
{
|
|
baseRouter.POST("login", baseApi.Login)
|
|
baseRouter.POST("captcha", baseApi.Captcha)
|
|
}
|
|
}
|