Spaces:
Runtime error
Runtime error
| """API handlers interface.""" | |
| from __future__ import annotations | |
| from typing import Protocol | |
| class APIHandlersInterface(Protocol): | |
| async def start_server(self) -> None: | |
| ... | |
| """API handlers interface.""" | |
| from __future__ import annotations | |
| from typing import Protocol | |
| class APIHandlersInterface(Protocol): | |
| async def start_server(self) -> None: | |
| ... | |