ekilex-py/ekilex/protocol.py
2025-05-13 14:41:28 +03:00

9 lines
192 B
Python

"""Protocol for mixins in order for type checkers to work correctly."""
from typing import Protocol
class EkilexAPIBase(Protocol):
api_key: str
headers: dict[str, str]
url: str