From 2326633e76aaf9c5e733e08045c0a26b81f9f4e6 Mon Sep 17 00:00:00 2001 From: Vidhu Kant Sharma Date: Sun, 25 Sep 2022 15:29:13 +0530 Subject: Added endpoints to add and delete data --- brand/brand_router.go | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 brand/brand_router.go (limited to 'brand/brand_router.go') diff --git a/brand/brand_router.go b/brand/brand_router.go new file mode 100644 index 0000000..3930931 --- /dev/null +++ b/brand/brand_router.go @@ -0,0 +1,26 @@ +package brand + +import ( + "github.com/gin-gonic/gin" + "github.com/MikunoNaka/OpenBills-lib/brand" + "log" + "net/http" +) + + +func Routes(route *gin.Engine) { + b := route.Group("/brand") + { + b.POST("/", func(ctx *gin.Context) { + var x brand.Brand + ctx.Bind(&x) + err := x.Save() + if err != nil { + ctx.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()}) + } + + log.Println("Added new brand to database: ", x.Name) + ctx.JSON(http.StatusOK, nil) + }) + } +} -- cgit v1.2.3