init(api): add single quote get handler

This commit is contained in:
2025-01-06 15:23:19 +03:00
parent 14e88b2e2e
commit 875452004d
2 changed files with 18 additions and 0 deletions
+1
View File
@@ -22,5 +22,6 @@ func RegisterRoutes(r *gin.Engine) {
{
api.POST("/auth", userAuth)
api.GET("/quotes", quotesGet)
api.GET("/quotes/:id", quoteGet)
}
}