Source code for csle_common.dao.simulation_config.state_type

from enum import IntEnum


[docs]class StateType(IntEnum): """ Enum representing the different state types in CSLE """ ACTIVE = 0 TERMINAL = 1