Island: Add IAgentRepository.reset()

This commit is contained in:
Mike Salvatore 2022-08-30 07:00:43 -04:00
parent 1eefbdb2b1
commit f00268c4a1
1 changed files with 6 additions and 0 deletions

View File

@ -39,3 +39,9 @@ class IAgentRepository(ABC):
:return: All `Agents` that are currently running :return: All `Agents` that are currently running
:raises RetrievalError: If an error occurred while attempting to retrieve the `Agents` :raises RetrievalError: If an error occurred while attempting to retrieve the `Agents`
""" """
@abstractmethod
def reset(self):
"""
Removes all data from the repository
"""