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
379 B

3 years ago
  1. package system
  2. import (
  3. v1 "github.com/flipped-aurora/gin-vue-admin/server/api/v1"
  4. "github.com/gin-gonic/gin"
  5. )
  6. type JwtRouter struct {
  7. }
  8. func (s *JwtRouter) InitJwtRouter(Router *gin.RouterGroup) {
  9. jwtRouter := Router.Group("jwt")
  10. var jwtApi = v1.ApiGroupApp.SystemApiGroup.JwtApi
  11. {
  12. jwtRouter.POST("jsonInBlacklist", jwtApi.JsonInBlacklist) // jwt加入黑名单
  13. }
  14. }