mirror of
https://github.com/hatchet-dev/hatchet.git
synced 2026-04-28 05:30:05 -05:00
d7e6e4d8c6
* fix: worker locking on requeues * chore: add alerter to dispatcher
16 lines
225 B
Python
16 lines
225 B
Python
from hatchet_sdk import new_client
|
|
from dotenv import load_dotenv
|
|
|
|
load_dotenv()
|
|
|
|
client = new_client()
|
|
|
|
for i in range(10):
|
|
client.event.push(
|
|
"user:create",
|
|
{
|
|
"test": "test"
|
|
}
|
|
)
|
|
|