Files
prefect-code/test.py
yhydev 7191b190df init
2025-12-07 15:12:43 +08:00

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()