8 lines
173 B
Python
8 lines
173 B
Python
from .base import Action
|
|
|
|
|
|
class Copy(Action):
|
|
"""Copy files or directories to target."""
|
|
async def call(self, *args, **kwargs):
|
|
await self.copy(*self.args)
|