Alexander van Eck
07/19/2022, 3:38 PM@task
def task_1():
print('1')
@task
def task_2():
print('2')
@task
def task_3():
print('3')
And I wanted to give the user the ability to say in which order these should be executed, or who should consume which one.
i.e. I want to user to describe a graph of these callables and then for the flow to execute them.
How would I do this?Kevin Kho
07/19/2022, 3:42 PMAlexander van Eck
07/19/2022, 3:42 PMKevin Kho
07/19/2022, 3:44 PM