package labelValue import ( "github.com/gin-gonic/gin" ) const pathPrefix = "label/value" func Handler(r *gin.Engine) { group := r.Group(pathPrefix) group.POST("", Post) group.DELETE("", Delete) group.PUT("", Put) group.GET("", Get) }