File size: 231 Bytes
89eb9ba |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
from pydantic_settings import BaseSettings
class Settings(BaseSettings):
CACHING_TYPE: str
CACHING_HOST: str
CACHING_PORT: int
CACHING_PASS: str
class Config:
env_file = ".env"
settings = Settings()
|