init(api): add user get handler

This commit is contained in:
2025-01-06 17:37:40 +03:00
parent d2a6522157
commit 3327dc6f18
2 changed files with 17 additions and 0 deletions
+1
View File
@@ -21,6 +21,7 @@ func RegisterRoutes(r *gin.Engine) {
api := r.Group("/api")
{
api.POST("/auth", userAuth)
api.GET("/auth", userGet)
api.PATCH("/auth", userUpdate)
api.GET("/quotes", quotesGet)