mirror of
https://github.com/grassrootseconomics/cic-custodial.git
synced 2024-11-25 07:16:46 +01:00
36 lines
815 B
Go
36 lines
815 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"github.com/VictoriaMetrics/metrics"
|
||
|
"github.com/go-playground/validator"
|
||
|
"github.com/grassrootseconomics/cic-custodial/internal/api"
|
||
|
"github.com/labstack/echo/v4"
|
||
|
)
|
||
|
|
||
|
// Bootstrap API server.
|
||
|
func initApiServer(custodialContainer *custodial) *echo.Echo {
|
||
|
lo.Debug("api: bootstrapping api server")
|
||
|
server := echo.New()
|
||
|
server.HideBanner = true
|
||
|
server.HidePort = true
|
||
|
|
||
|
if ko.Bool("service.metrics") {
|
||
|
server.GET("/metrics", func(c echo.Context) error {
|
||
|
metrics.WritePrometheus(c.Response(), true)
|
||
|
return nil
|
||
|
})
|
||
|
}
|
||
|
|
||
|
server.Validator = &api.Validator{
|
||
|
ValidatorProvider: validator.New(),
|
||
|
}
|
||
|
|
||
|
apiRoute := server.Group("/api")
|
||
|
apiRoute.POST("/account/create", api.CreateAccountHandler(
|
||
|
custodialContainer.taskerClient,
|
||
|
custodialContainer.keystore,
|
||
|
))
|
||
|
|
||
|
return server
|
||
|
}
|