forked from p15670423/monkey
Island: Add reset_to_default() to IAgentConfigurationRepository
This commit is contained in:
parent
ebaa68ad51
commit
aa7509e49f
|
@ -28,3 +28,12 @@ class IAgentConfigurationRepository(ABC):
|
|||
:raises StorageError: If the configuration could not be stored
|
||||
"""
|
||||
pass
|
||||
|
||||
@abstractmethod
|
||||
def reset_to_default(self):
|
||||
"""
|
||||
Remove any stored configuration from the repository
|
||||
|
||||
:raises RemovalError: If the repository could not be reset
|
||||
"""
|
||||
pass
|
||||
|
|
Loading…
Reference in New Issue