mirror of
https://github.com/hatchet-dev/hatchet.git
synced 2025-12-30 21:29:44 -06:00
11 lines
209 B
Python
11 lines
209 B
Python
# > Schedule a Task
|
|
from datetime import datetime
|
|
|
|
from examples.simple.worker import simple
|
|
|
|
schedule = simple.schedule(datetime(2025, 3, 14, 15, 9, 26))
|
|
|
|
## 👀 do something with the id
|
|
print(schedule.id)
|
|
|