From aa57b6222e86aaa49523d48fc0295a2e00679259 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 1 Feb 2026 06:52:48 +0000 Subject: [PATCH] Initial upload: DevDash CLI with TUI dashboard --- src/config/settings.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/config/settings.py diff --git a/src/config/settings.py b/src/config/settings.py new file mode 100644 index 0000000..d720021 --- /dev/null +++ b/src/config/settings.py @@ -0,0 +1,10 @@ +from pydantic import BaseModel +from typing import Optional + + +class Settings(BaseModel): + github_token: Optional[str] = None + gitlab_token: Optional[str] = None + default_repo: Optional[str] = None + refresh_interval: int = 30 + theme: str = "dark"