Fe overhaul docs (#1640)

* api changes

* doc changes

* move docs

* generated

* generate

* pkg

* backmerge main

* revert to main

* revert main

* race?

* remove go tests
This commit is contained in:
Gabe Ruttner
2025-04-30 17:10:09 -04:00
committed by GitHub
parent 799b5d0dcf
commit 8e80faf2d6
1503 changed files with 36645 additions and 1235 deletions
+18
View File
@@ -0,0 +1,18 @@
import time
from examples.durable.worker import (
EVENT_KEY,
SLEEP_TIME,
durable_workflow,
ephemeral_workflow,
hatchet,
)
durable_workflow.run_no_wait()
ephemeral_workflow.run_no_wait()
print("Sleeping")
time.sleep(SLEEP_TIME + 2)
print("Pushing event")
hatchet.event.push(EVENT_KEY, {})