mirror of
https://github.com/getAlby/lndhub.go.git
synced 2025-12-23 15:44:51 +01:00
12 lines
175 B
Go
12 lines
175 B
Go
package lib
|
|
|
|
import (
|
|
"github.com/lightningnetwork/lnd/lnrpc"
|
|
"github.com/uptrace/bun"
|
|
)
|
|
|
|
type LndhubService struct {
|
|
DB *bun.DB
|
|
LndClient *lnrpc.LightningClient
|
|
}
|