diff options
author | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-07-12 12:14:35 +0530 |
---|---|---|
committer | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-07-12 12:14:35 +0530 |
commit | 6baad020ce5037a90d902c8f41f1f37f52419a10 (patch) | |
tree | 7b69f6b7b6bc70c2d7edb3e881d8dbf2dca01109 /server/router/invoice.go | |
parent | 554a99c96d223eacc4bb6e10e3f6ad1712397f3a (diff) |
Added support for more client details in server
Diffstat (limited to 'server/router/invoice.go')
-rw-r--r-- | server/router/invoice.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/server/router/invoice.go b/server/router/invoice.go index 6544119..865d244 100644 --- a/server/router/invoice.go +++ b/server/router/invoice.go @@ -13,7 +13,6 @@ import ( //"net/http" "fmt" - //"strconv" db "github.com/MikunoNaka/openbills/database" ) @@ -28,7 +27,7 @@ import ( // db.RegisterItem(newItem) // } -func previewInvoice(ctx *gin.Context) { +func registerInvoice(ctx *gin.Context) { var newInvoice db.Invoice ctx.Bind(&newInvoice) fmt.Println(newInvoice) |