componentlist.go 221 B

1234567891011
  1. package routers
  2. import (
  3. "Panel_development/app/controller"
  4. "github.com/gin-gonic/gin"
  5. )
  6. func ComponentListRouter(r *gin.Engine) {
  7. group := r.Group("/api")
  8. group.GET("/componentList", controller.GetComponentList)
  9. }