add transaction handle

Signed-off-by: GnomeZworc <nicolas.boufidjeline@g3e.fr>
This commit is contained in:
GnomeZworc 2026-06-13 14:06:39 +02:00
commit 5f6b13ce78
Signed by: nicolas.boufideline
GPG key ID: 4406BBBF8845D632
3 changed files with 356 additions and 0 deletions

View file

@ -38,6 +38,7 @@ func (s *Server) routes() {
handler.NewInstrumentHandler(st).RegisterRoutes(s.mux)
handler.NewAccountHandler(st).RegisterRoutes(s.mux)
handler.NewTransactionHandler(st).RegisterRoutes(s.mux)
s.mux.HandleFunc("GET /health", s.handleHealth)
}