mirror of
https://github.com/hatchet-dev/hatchet.git
synced 2026-03-18 10:42:44 -05:00
8 lines
234 B
Python
8 lines
234 B
Python
from examples.bulk_fanout.worker import ParentInput, bulk_parent_wf
|
|
from hatchet_sdk import TriggerWorkflowOptions
|
|
|
|
bulk_parent_wf.run(
|
|
ParentInput(n=999),
|
|
TriggerWorkflowOptions(additional_metadata={"no-dedupe": "world"}),
|
|
)
|