uvicorn/tests/custom_loop_utils.py
Nir Geller 52b3ec62a3
Support custom IOLOOPs (#2435)
Co-authored-by: Thomas Grainger <tagrain@gmail.com>
Co-authored-by: Marcelo Trylesinski <marcelotryle@gmail.com>
2025-07-01 19:55:34 +02:00

8 lines
107 B
Python

from __future__ import annotations
import asyncio
class CustomLoop(asyncio.SelectorEventLoop):
pass