forked from p15670423/monkey
Island: Add empty RepositoryService
This commit is contained in:
parent
a1b617cda3
commit
a4b8c94480
|
@ -2,3 +2,4 @@ from .authentication_service import AuthenticationService
|
|||
|
||||
from .aws import AWSService
|
||||
from .island_mode_service import IslandModeService
|
||||
from .repository_service import RepositoryService
|
||||
|
|
|
@ -0,0 +1,12 @@
|
|||
class RepositoryService:
|
||||
def reset_agent_configuration(self):
|
||||
pass
|
||||
|
||||
def unlock(self):
|
||||
pass
|
||||
|
||||
def reset_key(self):
|
||||
pass
|
||||
|
||||
def clear_simulation_data(self):
|
||||
pass
|
Loading…
Reference in New Issue