mirror of
https://github.com/getAlby/lndhub.go.git
synced 2025-12-23 07:35:04 +01:00
17 lines
284 B
Go
17 lines
284 B
Go
package lib
|
|
|
|
import (
|
|
"github.com/bumi/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
|
|
}
|