diff options
author | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-07-05 10:10:37 +0530 |
---|---|---|
committer | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-07-05 10:10:37 +0530 |
commit | 1b5622ba01eb30768c49dcb9b7ac155cca0504e2 (patch) | |
tree | b4d42f99546f27c45332a10f7eb6ec199e93a5ce /server/router/router.go | |
parent | 1fcb52a35dd3fb6b2c9d67c6b35dceca6bb070aa (diff) |
Deleted all the User API routes, planning to make openbills single-user
Diffstat (limited to 'server/router/router.go')
-rw-r--r-- | server/router/router.go | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/server/router/router.go b/server/router/router.go index 7729dd2..9da6d1e 100644 --- a/server/router/router.go +++ b/server/router/router.go @@ -25,20 +25,14 @@ func InitRouter() { api := myRouter.Group("/api") people := api.Group("/people") items := api.Group("/items") - users := api.Group("/users") // items API routes items.GET("/get-all", getAllItems) items.POST("/register", registerItem) - // people API routes people.GET("/get-all", getAllPeople) people.POST("/register", registerPerson) - // users API routes - users.GET("/get-all", getAllUsers) - // users.POST("/register", registerUser) - myRouter.Run(":8080") } |