kopia lustrzana https://github.com/glidernet/ogn-python
10 wiersze
143 B
Python
10 wiersze
143 B
Python
![]() |
import enum
|
||
|
|
||
|
|
||
|
class ReceiverState(enum.Enum):
|
||
|
# lower number == more trustworthy
|
||
|
OK = 0
|
||
|
ZOMBIE = 1
|
||
|
UNKNOWN = 2
|
||
|
OFFLINE = 3
|