<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">from __future__ import annotations

from typing import Any

from uvicorn import Config


class LifespanOff:
    def __init__(self, config: Config) -&gt; None:
        self.should_exit = False
        self.state: dict[str, Any] = {}

    async def startup(self) -&gt; None:
        pass

    async def shutdown(self) -&gt; None:
        pass
</pre></body></html>