Still missing documentation about Output core component And actual Action/Targets etc ... in the process of migrating to the new engine
12 lines
210 B
Python
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})'
|