Files
home-automation-backend/app/core/config.py

9 lines
149 B
Python
Raw Permalink Normal View History

2026-01-10 13:22:02 +00:00
from pydantic_settings import BaseSettings
class Settings(BaseSettings):
PROJECT_NAME: str = "home-automation-backend"
settings = Settings()