Files
lndhub.go/controllers/gettxs.ctrl.go
2022-01-18 10:42:53 +01:00

17 lines
334 B
Go

package controllers
import (
"net/http"
"github.com/getAlby/lndhub.go/db/models"
"github.com/labstack/echo/v4"
)
// GetTXSController : GetTXSController struct
type GetTXSController struct{}
// GetTXS : Get TXS Controller
func (GetTXSController) GetTXS(c echo.Context) error {
return c.JSON(http.StatusOK, &models.Invoice{})
}