monkey/monkey/monkey_island/cc/models/__init__.py

16 lines
627 B
Python

from .command_control_channel import CommandControlChannel
# Order of importing matters here, for registering the embedded and referenced documents before
# using them.
from .config import Config
from .monkey import Monkey
from .monkey_ttl import MonkeyTtl
from .pba_results import PbaResults
from monkey_island.cc.models.report.report import Report
from .simulation import Simulation, SimulationSchema, IslandMode
from .user_credentials import UserCredentials
from .machine import Machine, MachineID
from .communication_type import CommunicationType
from .node import Node, ConnectionTarget
from .agent import Agent, AgentID