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 --- client/client_router.go | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 client/client_router.go (limited to 'client') diff --git a/client/client_router.go b/client/client_router.go new file mode 100644 index 0000000..8b16f2e --- /dev/null +++ b/client/client_router.go @@ -0,0 +1,25 @@ +package client + +import ( + "github.com/gin-gonic/gin" + "github.com/MikunoNaka/OpenBills-lib/client" + "log" + "net/http" +) + +func Routes(route *gin.Engine) { + c := route.Group("/client") + { + c.POST("/", func(ctx *gin.Context) { + var x client.Client + ctx.Bind(&x) + err := x.Save() + if err != nil { + ctx.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()}) + } + + log.Println("Added new client to database: ", x.Name) + ctx.JSON(http.StatusOK, nil) + }) + } +} -- cgit v1.2.3