mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-11-18 01:56:55 +01:00
16 lines
372 B
Go
16 lines
372 B
Go
package sources
|
|
|
|
import (
|
|
"github.com/lightningnetwork/lnd/graph/session"
|
|
"github.com/lightningnetwork/lnd/lnrpc/invoicesrpc"
|
|
"github.com/lightningnetwork/lnd/netann"
|
|
)
|
|
|
|
// GraphSource defines the read-only graph interface required by LND for graph
|
|
// related queries.
|
|
type GraphSource interface {
|
|
session.ReadOnlyGraph
|
|
invoicesrpc.GraphSource
|
|
netann.ChannelGraph
|
|
}
|