mirror of
https://github.com/hatchet-dev/hatchet.git
synced 2026-01-19 23:29:58 -06:00
11 lines
261 B
Python
11 lines
261 B
Python
from hatchet_sdk.clients.events import PushEventOptions
|
|
from hatchet_sdk.hatchet import Hatchet
|
|
|
|
hatchet = Hatchet(debug=True)
|
|
|
|
hatchet.event.push(
|
|
"affinity:run",
|
|
{"test": "test"},
|
|
options=PushEventOptions(additional_metadata={"hello": "moon"}),
|
|
)
|