10 lines
223 B
Python
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"
|
|
)
|