Sign in
apache
/
airflow-on-k8s-operator
/
3b5e9536044ba7c49fdbb743d186e9488fc63ab6
/
.
/
vendor
/
github.com
/
gogo
/
protobuf
/
test
/
issue330
/
type.go
blob: 556b21b87288253c35321202faadb34f4420dab0 [
file
] [
log
] [
blame
]
package issue330
type TypeIdentifier uint32
const (
UnknownType TypeIdentifier = 0
UserType TypeIdentifier = 20
)
func (t TypeIdentifier) String() string {
switch t {
case 20:
return "User"
default:
return "Unknown"
}
}