mirror of
https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git
synced 2025-08-14 00:25:46 +02:00
8 lines
148 B
Python
8 lines
148 B
Python
import asyncio
|
|
|
|
import uvloop
|
|
|
|
|
|
def uvloop_setup(use_subprocess: bool = False) -> None:
|
|
asyncio.set_event_loop_policy(uvloop.EventLoopPolicy())
|