feat: add LATEST_VERSION config for client update detection

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-21 15:24:43 +03:00
parent 06b01533d4
commit 2d1b927670
2 changed files with 4 additions and 0 deletions

View File

@@ -10,6 +10,7 @@ class Settings(BaseSettings):
ACCESS_TOKEN_EXPIRE_MINUTES: int = 60
ADMIN_USERNAME: str = "sysadmin"
ADMIN_PASSWORD: str = "changeme"
LATEST_VERSION: str = "0.0.0"
model_config = {"env_file": str(_HERE / ".env")}