13 lines
167 B
Python
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)
|