mirror of
https://github.com/hatchet-dev/hatchet.git
synced 2026-01-01 06:11:02 -06:00
13 lines
179 B
Python
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"
|
|
}
|
|
) |