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