kra/internal/server/router/system/sys_jwt.go

13 lines
239 B
Go

package system
import "github.com/gin-gonic/gin"
type JwtRouter struct{}
func (r *JwtRouter) InitJwtRouter(Router *gin.RouterGroup) {
jwtRouter := Router.Group("jwt")
{
jwtRouter.POST("jsonInBlacklist", jwtApi.JsonInBlacklist)
}
}