This commit is contained in:
2025-04-22 01:32:12 +02:00
parent 12dd0f9af7
commit 586359f8ce
3 changed files with 9 additions and 1 deletions

View File

@@ -1,4 +1,6 @@
from asyncio import run
from asyncio import run, set_event_loop_policy
import uvloop
from core.temporal import get_client
@@ -53,4 +55,7 @@ async def main():
await worker.run()
set_event_loop_policy(uvloop.EventLoopPolicy())
run(main())