diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2025-10-11 21:06:36 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2025-10-11 21:06:36 +0530 |
commit | 997b038761b8dd606e4041d8c8dc8bbf6f036033 (patch) | |
tree | 156bab13e8c2566e67df43189a612b7cebccda14 /item/router.go | |
parent | 99aee928a64649be75c4698b8e856e3ea05bc695 (diff) |
Removed Brand and added BrandName and Category as item fieldsv0.18.0
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) |