Kevin Guzman

Results 1 comments of Kevin Guzman

I think a found a possible solution using the `contextlib`, ```python @contextlib.asynccontextmanager async def lifespan(app: Starlette): async with contextlib.AsyncExitStack() as stack: await stack.enter_async_context(server.session_manager.run()) yield ``` the server variable is the...