mirror of
https://github.com/hatchet-dev/hatchet.git
synced 2026-01-27 19:28:49 -06:00
12 lines
228 B
Python
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()
|