blob: f132720c70433fa3914171a9b3095886bc98bebd (
plain)
1
2
3
4
5
6
7
8
|
#!/router/bin/python
# define the states in which a T-Rex can hold during its lifetime
# TRexStatus = Enum('TRexStatus', 'Idle Starting Running')
IDLE = 1
STARTING = 2
RUNNING = 3
|