init(api): add quotes get handler

This commit is contained in:
2025-01-06 03:39:41 +03:00
parent 9299062f69
commit c7df4a1960
2 changed files with 60 additions and 0 deletions
+1
View File
@@ -21,5 +21,6 @@ func RegisterRoutes(r *gin.Engine) {
api := r.Group("/api")
{
api.POST("/auth", userAuth)
api.GET("/quotes", quotesGet)
}
}