mirror of
https://github.com/getAlby/lndhub.go.git
synced 2026-01-05 22:15:50 +01:00
15 lines
199 B
Go
15 lines
199 B
Go
package lib
|
|
|
|
import (
|
|
"github.com/bumi/lndhub.go/db/models"
|
|
"github.com/labstack/echo/v4"
|
|
"github.com/uptrace/bun"
|
|
)
|
|
|
|
type LndhubContext struct {
|
|
echo.Context
|
|
|
|
DB *bun.DB
|
|
User *models.User
|
|
}
|