mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-23 00:00:33 +00:00
11 lines
252 B
Python
11 lines
252 B
Python
import os
|
|
|
|
# flow is considered recovered and a success unless an exception is raised
|
|
|
|
|
|
def main(message: str, name: str):
|
|
flow_id = os.environ.get("WM_FLOW_JOB_ID")
|
|
print("message", message)
|
|
print("name", name)
|
|
return message, flow_id
|