summaryrefslogtreecommitdiff
path: root/item
diff options
context:
space:
mode:
authorVidhu Kant Sharma <vidhukant@vidhukant.xyz>2022-09-25 15:29:13 +0530
committerVidhu Kant Sharma <vidhukant@vidhukant.xyz>2022-09-25 15:29:13 +0530
commit2326633e76aaf9c5e733e08045c0a26b81f9f4e6 (patch)
tree270fbbb8a71d0dd0c7281fb6becc0d67f1368590 /item
parent82d9a0f82bc776bf5b026f64c5bf63b89719906a (diff)
Added endpoints to add and delete data
Diffstat (limited to 'item')
-rw-r--r--item/item_router.go26
1 files changed, 26 insertions, 0 deletions
diff --git a/item/item_router.go b/item/item_router.go
new file mode 100644
index 0000000..b10c986
--- /dev/null
+++ b/item/item_router.go
@@ -0,0 +1,26 @@
+package item
+
+import (
+ "github.com/gin-gonic/gin"
+ "github.com/MikunoNaka/OpenBills-lib/item"
+ "log"
+ "net/http"
+)
+
+
+func Routes(route *gin.Engine) {
+ i := route.Group("/item")
+ {
+ i.POST("/", func(ctx *gin.Context) {
+ var x item.Item
+ ctx.Bind(&x)
+ err := x.Save()
+ if err != nil {
+ ctx.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()})
+ }
+
+ log.Println("Added new item to database: ", x.Name)
+ ctx.JSON(http.StatusOK, nil)
+ })
+ }
+}