Add blank routes required for bluewallet

This commit is contained in:
Michael Bumann
2022-01-20 14:02:32 +01:00
parent 6822b274e5
commit 31570b8adf
3 changed files with 13 additions and 2 deletions

View File

@@ -29,3 +29,7 @@ func (controller *BlankController) GetPending(c echo.Context) error {
return c.JSON(http.StatusOK, &addresses)
}
func (controller *BlankController) Home(c echo.Context) error {
return c.JSON(http.StatusOK, "")
}