11 lines
207 B
Go
11 lines
207 B
Go
package schema
|
|
|
|
import "google.golang.org/protobuf/types/known/timestamppb"
|
|
|
|
type NodeStore map[string]*NodeStoreInfo
|
|
|
|
type NodeStoreInfo struct {
|
|
LastUpdate *timestamppb.Timestamp
|
|
IpManagement string
|
|
}
|