1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
package mt type PointabilityType uint8 const ( Through PointabilityType = iota Pointable Blocking ) type Pointabilities struct { // Version. //mt:const uint8(0) Nodes map[string]PointabilityType NodeGroups map[string]PointabilityType Objects map[string]PointabilityType ObjectGroups map[string]PointabilityType }