Files
hatchet/sdks/python/examples/v2/trigger.py
2025-03-11 14:57:13 -04:00

12 lines
228 B
Python

from examples.v2.workflows import ExampleWorkflowInput, example_workflow
def main() -> None:
example_workflow.run(
input=ExampleWorkflowInput(message="Hello, world!"),
)
if __name__ == "__main__":
main()