From 997b038761b8dd606e4041d8c8dc8bbf6f036033 Mon Sep 17 00:00:00 2001 From: Vidhu Kant Sharma Date: Sat, 11 Oct 2025 21:06:36 +0530 Subject: Removed Brand and added BrandName and Category as item fields --- item/router.go | 8 -------- 1 file changed, 8 deletions(-) (limited to 'item/router.go') 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) -- cgit v1.2.3