Implement get_share_links (#302)

This commit is contained in:
Kerem Yilmaz 2024-05-13 00:03:31 -07:00 committed by GitHub
parent 6a83f367ba
commit 20a86590dd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 41 additions and 38 deletions

View file

@ -40,6 +40,10 @@ class BaseStorage(ABC):
async def get_share_link(self, artifact: Artifact) -> str | None:
pass
@abstractmethod
async def get_share_links(self, artifacts: list[Artifact]) -> list[str] | None:
pass
@abstractmethod
async def store_artifact_from_path(self, artifact: Artifact, path: str) -> None:
pass