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

  1. package router
  2. import (
  3. "github.com/gin-gonic/gin"
  4. "main/controller/api"
  5. "main/middleware"
  6. )
  7. func InitAuthorityRouter(Router *gin.Engine) {
  8. AuthorityRouter := Router.Group("authority").Use(middleware.JWTAuth())
  9. {
  10. AuthorityRouter.POST("createAuthority", api.CreateAuthority)
  11. AuthorityRouter.POST("deleteAuthority", api.DeleteAuthority)
  12. }
  13. }