import os from pydantic_settings import BaseSettings class AppSettings(BaseSettings): NAME: str = "notification" AZURE_STORAGE_DOCUMENT_API_ENDPOINT: str = ( "https://freeleaps1document.blob.core.windows.net/" ) AZURE_STORAGE_DOCUMENT_API_KEY: str = "" class Config: env_file = ".myapp.env" env_file_encoding = "utf-8" app_settings = AppSettings()