mirror of
https://github.com/getAlby/lndhub.go.git
synced 2025-12-22 23:25:26 +01:00
17 lines
268 B
Go
17 lines
268 B
Go
package lib
|
|
|
|
import (
|
|
"github.com/bumi/lndhub.go/db/models"
|
|
"github.com/bumi/lndhub.go/lnd"
|
|
"github.com/labstack/echo/v4"
|
|
"github.com/uptrace/bun"
|
|
)
|
|
|
|
type LndhubContext struct {
|
|
echo.Context
|
|
|
|
DB *bun.DB
|
|
User *models.User
|
|
LndClient *lnd.LNDclient
|
|
}
|