11 lines
187 B
Go
11 lines
187 B
Go
|
package routing
|
||
|
|
||
|
import (
|
||
|
"github.com/lightningnetwork/lnd/routing/route"
|
||
|
)
|
||
|
|
||
|
// DirectedNodePair stores a directed pair of nodes.
|
||
|
type DirectedNodePair struct {
|
||
|
From, To route.Vertex
|
||
|
}
|