Files
lndhub.go/pkg/controllers/gettxs.ctrl.go
2022-01-13 20:02:31 +01:00

16 lines
340 B
Go

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