Initial upload: DevDash CLI with TUI dashboard
Some checks failed
CI / test (push) Has been cancelled
Some checks failed
CI / test (push) Has been cancelled
This commit is contained in:
10
src/config/settings.py
Normal file
10
src/config/settings.py
Normal file
@@ -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"
|
||||||
Reference in New Issue
Block a user