mirror of
https://github.com/edouardparis/lntop
synced 2024-11-17 21:26:12 +00:00
18 lines
255 B
Go
18 lines
255 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
type Node struct {
|
|
NumChannels uint32
|
|
TotalCapacity int64
|
|
LastUpdate time.Time
|
|
PubKey string
|
|
Alias string
|
|
Addresses []*NodeAddress
|
|
}
|
|
|
|
type NodeAddress struct {
|
|
Network string
|
|
Addr string
|
|
}
|