Spaces:
Runtime error
Runtime error
| """Twitch integration interface.""" | |
| from __future__ import annotations | |
| from typing import Protocol | |
| class TwitchIntegrationInterface(Protocol): | |
| async def connect(self) -> None: | |
| ... | |