mirror of
https://github.com/getAlby/lndhub.go.git
synced 2025-12-20 14:14:47 +01:00
17 lines
287 B
Go
17 lines
287 B
Go
package lib
|
|
|
|
import (
|
|
"github.com/getAlby/lndhub.go/db/models"
|
|
"github.com/labstack/echo/v4"
|
|
"github.com/lightningnetwork/lnd/lnrpc"
|
|
"github.com/uptrace/bun"
|
|
)
|
|
|
|
type LndhubContext struct {
|
|
echo.Context
|
|
|
|
DB *bun.DB
|
|
User *models.User
|
|
LndClient *lnrpc.LightningClient
|
|
}
|