mirror of
https://github.com/kubernetes-sigs/prometheus-adapter.git
synced 2026-04-06 17:57:51 +00:00
8 lines
81 B
Go
8 lines
81 B
Go
package enumdecl
|
|
|
|
type MyEnum int32
|
|
|
|
const (
|
|
A MyEnum = iota
|
|
B MyEnum = iota
|
|
)
|