Files
lndhub.go/pkg/controllers/gettxs.ctrl.go
Roman Useinov 7af5b2c54b sort imports
2022-01-14 20:42:32 +00:00

17 lines
341 B
Go

package controllers
import (
"net/http"
"github.com/bumi/lndhub.go/pkg/database/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{})
}