tebakaja's picture
[ Feat ]: Implementation Server Side Caching \u Redis (Aiven Cloud)
89eb9ba
raw
history blame
231 Bytes
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()