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