From 0607478f1e4c86619a606af7876a6625e859ee1a Mon Sep 17 00:00:00 2001 From: Vidhu Kant Sharma Date: Sat, 28 Jan 2023 23:32:41 +0530 Subject: created endpoint to get logged in user's info --- client/router.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'client') diff --git a/client/router.go b/client/router.go index 0e5663b..232ad83 100644 --- a/client/router.go +++ b/client/router.go @@ -18,7 +18,7 @@ package client import ( - "github.com/MikunoNaka/OpenBills-server/auth" + "github.com/MikunoNaka/OpenBills-server/util" "github.com/gin-gonic/gin" "log" "net/http" @@ -27,7 +27,7 @@ import ( func Routes(route *gin.Engine) { c := route.Group("/client") - c.Use(auth.Authorize()) + c.Use(util.Authorize()) { c.GET("/all", func(ctx *gin.Context) { // TODO: add functionality to filter results -- cgit v1.2.3