Source code for csle_common.dao.emulation_action_result.nmap_host_status

"""
Type of nmap host statuses
"""
from enum import IntEnum


[docs]class NmapHostStatus(IntEnum): """ Enum representing the different host statuses in the network. """ UP = 0 DOWN = 1