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/router.go | |
parent | 554a99c96d223eacc4bb6e10e3f6ad1712397f3a (diff) |
Added support for more client details in server
Diffstat (limited to 'server/router/router.go')
-rw-r--r-- | server/router/router.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/router/router.go b/server/router/router.go index 5b79fa4..c6ddd65 100644 --- a/server/router/router.go +++ b/server/router/router.go @@ -36,7 +36,7 @@ func InitRouter() { people.POST("/register", registerPerson) // invoice API routes - invoice.POST("/preview", previewInvoice) + invoice.POST("/preview", registerInvoice) myRouter.Run(":8080") } |