From 729497c59491944de48c024796c9bfa57c4a0a2b Mon Sep 17 00:00:00 2001 From: Mike Salvatore Date: Wed, 8 Jun 2022 10:14:51 -0400 Subject: [PATCH] Agent: Add TODO about unifying IAgentRepository --- monkey/infection_monkey/exploit/i_agent_repository.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/monkey/infection_monkey/exploit/i_agent_repository.py b/monkey/infection_monkey/exploit/i_agent_repository.py index f63ca4038..d825772a0 100644 --- a/monkey/infection_monkey/exploit/i_agent_repository.py +++ b/monkey/infection_monkey/exploit/i_agent_repository.py @@ -1,6 +1,9 @@ import abc import io +# TODO: The Island also has an IAgentRepository with a totally different interface. At the moment, +# the Island and Agent have different needs, but at some point we should unify these. + class IAgentRepository(metaclass=abc.ABCMeta): """