Spaces:
Runtime error
Runtime error
| """Operator dashboard interface.""" | |
| from __future__ import annotations | |
| from typing import Protocol | |
| class OperatorDashboardInterface(Protocol): | |
| async def launch(self) -> None: | |
| ... | |