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