Files
gallery/gallery/sketch/api.py

13 lines
167 B
Python

from typing import TypeVar
class Api:
PROVIDER: str
@property
def provider(self) -> str:
return self.PROVIDER
API = TypeVar("API", bound=Api)