7 lines
126 B
Python
7 lines
126 B
Python
from .base import Action
|
|
|
|
|
|
class Copy(Action):
|
|
async def call(self, *args, **kwargs):
|
|
await self.copy(*self.args)
|