Island: Remove i_log_repository.py

This commit is contained in:
Kekoa Kaaikala 2022-09-21 22:18:09 +00:00
parent 06965abe5d
commit 5e7689345f
1 changed files with 0 additions and 18 deletions

View File

@ -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