Coverage for backend/constants.py: 100%

7 statements  

« prev     ^ index     » next       coverage.py v7.6.12, created at 2025-04-17 17:55 +0000

1from pydantic_settings import BaseSettings 

2 

3 

4class Settings(BaseSettings): 

5 """App settings.""" 

6 

7 env: str = "demo" 

8 frontend_url: str = "http://localhost" 

9 log_level: str = "DEBUG" 

10 code_length: int = 3 

11 

12 

13settings = Settings()