mirror of
https://github.com/cloudnativelabs/kube-router.git
synced 2025-10-14 03:11:26 +02:00
9 lines
81 B
Go
9 lines
81 B
Go
package enumdecl
|
|
|
|
type MyEnum int32
|
|
|
|
const (
|
|
A MyEnum = iota
|
|
B MyEnum = iota
|
|
)
|