ogn-python/app/model/receiver_state.py

10 wiersze
143 B
Python
Czysty Zwykły widok Historia

2020-11-24 19:26:28 +00:00
import enum
class ReceiverState(enum.Enum):
# lower number == more trustworthy
OK = 0
ZOMBIE = 1
UNKNOWN = 2
OFFLINE = 3