Spaces:
Running on Zero
Running on Zero
File size: 185 Bytes
9fb722e | 1 2 3 4 5 6 7 8 9 10 11 | from __future__ import annotations
from typing import Any, Protocol
class Service(Protocol):
name: str
version: str
def capabilities(self) -> list[tuple[Any, ...]]: ...
|