init(api): add quote update handler

This commit is contained in:
2025-01-06 16:53:23 +03:00
parent 08ac117b5a
commit a6e9665413
2 changed files with 53 additions and 0 deletions
+1
View File
@@ -24,6 +24,7 @@ func RegisterRoutes(r *gin.Engine) {
api.GET("/quotes", quotesGet)
api.POST("/quotes", quoteAdd)
api.GET("/quotes/:id", quoteGet)
api.PATCH("/quotes/:id", quoteUpdate)
api.DELETE("/quotes/:id", quoteDelete)
}
}