1
0

[loop-cycle-53] refactor: break circular imports between packages (#164) (#193)

This commit is contained in:
2026-03-15 12:52:18 -04:00
parent b3840238cb
commit 4a68f6cb8b
10 changed files with 195 additions and 173 deletions

View File

@@ -5,6 +5,10 @@ from typing import Literal
from pydantic_settings import BaseSettings, SettingsConfigDict
from datetime import UTC, datetime as _datetime
APP_START_TIME: _datetime = _datetime.now(UTC)
class Settings(BaseSettings):
"""Central configuration — all env-var access goes through this class."""