This commit is contained in:
yhydev
2025-12-07 15:12:43 +08:00
commit 7191b190df

9
test.py Normal file
View File

@@ -0,0 +1,9 @@
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()