adding endpoints

This commit is contained in:
Ramiro Paz
2026-05-06 11:56:12 -03:00
parent 15a60bac92
commit 68238d309a
6 changed files with 334 additions and 79 deletions

View File

@ -23,6 +23,8 @@ func SetRoutes(api *API) {
qfixdpl.GET("/health", cont.HealthCheck)
qfixdpl.GET("/trades", cont.GetTrades)
qfixdpl.GET("/trades/:quoteReqID/logs", cont.GetLogs)
qfixdpl.GET("/quote-requests", cont.GetPendingQuoteRequests)
qfixdpl.POST("/quotes", cont.SendQuote)
backoffice := qfixdpl.Group("/backoffice")
backoffice.Use(cont.BackOfficeUser)