mirror of
https://github.com/hatchet-dev/hatchet.git
synced 2026-01-08 17:59:43 -06: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"}),
|
|
)
|