aboutsummaryrefslogtreecommitdiff
path: root/object/type/details.go
blob: 17bdcfd42eb51577b754be94985c506056ab5198 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package objecttype

type typeDetails struct {
	name         string
	isBaseObject bool
}

func (ty Type) details() typeDetails {
	return typeTable[ty]
}