compute/pkg/schema/node.go
2025-03-01 18:41:36 +01:00

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
}