Files
compute/pkg/schema/node.go
2025-03-02 13:16:25 +01:00

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
}