poker-ranking-service/poker/settings.py

15 lines
276 B
Python
Raw Normal View History

2023-05-16 18:20:58 +00:00
from pydantic import BaseSettings, RedisDsn
class CacheSettings(BaseSettings):
"""Cache settings."""
url: RedisDsn
class Config:
"""Settings configuration."""
env_prefix = "cache_"
env_file = ".env"
env_file_encoding = "utf-8"