mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-07-04 10:52:17 +02:00
feat: enable duplicate workflow feature
This commit is contained in:
parent
c61a3843a5
commit
93c45580e7
8 changed files with 396 additions and 2 deletions
|
|
@ -98,3 +98,16 @@ class BaseFileSystem(ABC):
|
|||
bool: True if file was downloaded successfully, False otherwise
|
||||
"""
|
||||
pass
|
||||
|
||||
@abstractmethod
|
||||
async def acopy_file(self, source_path: str, destination_path: str) -> bool:
|
||||
"""Copy a file within storage (server-side copy).
|
||||
|
||||
Args:
|
||||
source_path: Path to the source file
|
||||
destination_path: Path for the copied file
|
||||
|
||||
Returns:
|
||||
bool: True if file was copied successfully, False otherwise
|
||||
"""
|
||||
pass
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue