forked from p15670423/monkey
Island: Remove i_log_repository.py
This commit is contained in:
parent
06965abe5d
commit
5e7689345f
|
@ -1,18 +0,0 @@
|
||||||
from abc import ABC
|
|
||||||
from typing import Optional, Sequence
|
|
||||||
|
|
||||||
|
|
||||||
# TODO: Actually define the Log class
|
|
||||||
class Log:
|
|
||||||
pass
|
|
||||||
|
|
||||||
|
|
||||||
class ILogRepository(ABC):
|
|
||||||
def get_logs(self, agent_id: Optional[str] = None) -> Sequence[Log]: # noqa: F821
|
|
||||||
pass
|
|
||||||
|
|
||||||
def save_log(self, log: Log): # noqa: F821
|
|
||||||
pass
|
|
||||||
|
|
||||||
def delete_log(self, agent_id: str):
|
|
||||||
pass
|
|
Loading…
Reference in New Issue