blob: f178c9b09b601aa24bf925604b9cc0716e88c9f7 [file] [log] [blame]
Stephane Barbarie35595062018-02-08 08:34:39 -05001package core
2
3type PonSimApiType uint8
4
5const (
6 PONSIM PonSimApiType = iota
7 BAL
8)
9
10var enum_ponsim_api_types = []string{
11 "PONSIM",
12 "BAL",
13}
14
15func (t PonSimApiType) String() string {
16 return enum_ponsim_api_types[t]
17}