mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2026-05-01 21:20:19 +00:00
Implement get_share_links (#302)
This commit is contained in:
parent
6a83f367ba
commit
20a86590dd
7 changed files with 41 additions and 38 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue