init(api): add quote delete handler

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