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