summaryrefslogtreecommitdiffstats
path: root/scripts/automation/trex_control_plane/common/trex_status_e.py
blob: a14901a1ef064f08a89734db08b4a5b8d82d6d15 (plain)
1
2
3
4
5
6
7
8
#!/router/bin/python

import outer_packages  # import this to overcome doc building import error by sphinx
from enum import Enum


# define the states in which a T-Rex can hold during its lifetime
TRexStatus = Enum('TRexStatus', 'Idle Starting Running')