arch-design-agent-skill-das.../backend/app/shared/infrastructure/config.py

10 lines
223 B
Python

from dataclasses import dataclass, field
from pathlib import Path
@dataclass
class Settings:
registry_path: Path = field(
default_factory=lambda: Path.home() / ".arch-design-dashboard" / "projects.json"
)