blob: f178c9b09b601aa24bf925604b9cc0716e88c9f7 [file] [log] [blame]
package core
type PonSimApiType uint8
const (
PONSIM PonSimApiType = iota
BAL
)
var enum_ponsim_api_types = []string{
"PONSIM",
"BAL",
}
func (t PonSimApiType) String() string {
return enum_ponsim_api_types[t]
}