13 lines
271 B
Python
13 lines
271 B
Python
from dataclasses import dataclass
|
|
|
|
from app.config import Settings
|
|
|
|
|
|
@dataclass(slots=True)
|
|
class TickTickClient:
|
|
settings: Settings
|
|
|
|
def is_configured(self) -> bool:
|
|
return bool(self.settings.ticktick_client_id and self.settings.ticktick_client_secret)
|
|
|