2020-02-03 05:25:04 +01:00

8 lines
191 B
Python

class Run:
def __init__(self, *commands):
self.commands = commands
async def build(self, script):
for command in self.commands:
await script.run(command)