mirror of
https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git
synced 2025-08-14 00:25:46 +02:00
11 lines
301 B
Python
11 lines
301 B
Python
import asyncio
|
|
import logging
|
|
import sys
|
|
|
|
logger = logging.getLogger("uvicorn.error")
|
|
|
|
|
|
def asyncio_setup(use_subprocess: bool = False) -> None:
|
|
if sys.platform == "win32" and use_subprocess:
|
|
asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy()) # pragma: full coverage
|