Implement state export endpoint

This commit is contained in:
Pijus Kamandulis
2024-02-23 00:27:12 +02:00
parent 16f41a5479
commit 332be181ef
4 changed files with 25 additions and 1 deletions

View File

@@ -37,6 +37,8 @@ func CreateRouter() *gin.Engine {
router.GET("/offers", handlers.GetOffers)
router.GET("/", handlers.GetServerInfo)
router.GET("/cosmium/export", handlers.CosmiumExport)
handlers.RegisterExplorerHandlers(router)
return router