package routers import ( "github.com/gin-gonic/gin" "project_management/app/controller" ) func ClientApply(r *gin.Engine) { group := r.Group("/api") group.GET("/applyname", controller.GetApplyByName) group.POST("/user/collection", controller.CollectionApp) group.GET("/user/collectionlist", controller.CollectionList) group.POST("/user/applylist", controller.GetApplyByNameAll) }