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