Files
hatchet/python-sdk/examples/simple/event_test.py
2024-01-26 19:46:17 -07:00

13 lines
179 B
Python

from hatchet_sdk import new_client
from dotenv import load_dotenv
load_dotenv()
client = new_client()
client.event.push(
"user:create",
{
"test": "test"
}
)