jpic b279760374 Complete core rewrite, with documentation
Still missing documentation about Output core component

And actual Action/Targets etc ... in the process of migrating to the new
engine
2020-04-22 03:25:06 +02:00

12 lines
210 B
Python

class Run:
def __init__(self, cmd):
self.cmd = cmd
async def __call__(self, target):
self.proc = await target.exec(self.cmd)
def __str__(self):
return f'Run({self.cmd})'