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

  1. package router
  2. import (
  3. "github.com/gin-gonic/gin"
  4. "main/controller/api"
  5. "main/middleware"
  6. )
  7. func InitApiRouter(Router *gin.Engine) {
  8. ApiRouter := Router.Group("api").Use(middleware.JWTAuth())
  9. {
  10. ApiRouter.POST("createApi", api.CreateApi)
  11. ApiRouter.POST("deleteApi", api.DeleteApi)
  12. ApiRouter.POST("setAuthAndPath",api.SetAuthAndPath)
  13. ApiRouter.POST("getApiList",api.GetApiList)
  14. }
  15. }