verbanote-client/verbanote_client/configuration.py

14 lines
194 B
Python

from dataclasses import dataclass
from rich.console import Console
@dataclass
class Config:
pod_id: str
endpoint: str
token: str
headers: dict[str, str]
console: Console