diff options
Diffstat (limited to 'item/router.go')
-rw-r--r-- | item/router.go | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/item/router.go b/item/router.go index b953d09..a8a3f16 100644 --- a/item/router.go +++ b/item/router.go @@ -22,14 +22,6 @@ import ( ) func Routes(route *gin.RouterGroup) { - b := route.Group("/brand") - { - b.GET("/", handleGetBrands) - b.GET("/:id/items", handleGetBrandItems) - b.POST("/", handleSaveBrand) - b.DELETE("/:id", handleDelBrand) - } - i := route.Group("/item") { i.GET("/", handleGetItems) |