9 lines
202 B
Python
9 lines
202 B
Python
from prefect import flow
|
|
|
|
@flow(log_prints=True)
|
|
def explain_flows():
|
|
print("run any python code here!")
|
|
print("encapsulate that business logic!")
|
|
|
|
if __name__ == "__main__":
|
|
explain_flows() |