GitHub Actions
Build Phase 1 HearthNet Space
9fb722e
Raw
History Blame
185 Bytes
from __future__ import annotations
from typing import Any, Protocol
class Service(Protocol):
name: str
version: str
def capabilities(self) -> list[tuple[Any, ...]]: ...