aboutsummaryrefslogtreecommitdiff
path: root/server/router/router.go
diff options
context:
space:
mode:
Diffstat (limited to 'server/router/router.go')
-rw-r--r--server/router/router.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/router/router.go b/server/router/router.go
index c6ddd65..a31dd52 100644
--- a/server/router/router.go
+++ b/server/router/router.go
@@ -25,7 +25,7 @@ func InitRouter() {
api := myRouter.Group("/api")
items := api.Group("/items")
people := api.Group("/people")
- invoice := api.Group("/invoice")
+ invoice := api.Group("/invoices")
// items API routes
items.GET("/get-all", getAllItems)