2
0
mirror of https://github.com/edouardparis/lntop synced 2024-11-17 21:26:12 +00:00
lntop/network/models/node.go
2019-04-04 13:06:38 +02:00

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
}