2024-12-26 23:34:54 +00:00
|
|
|
from pydantic import RedisDsn
|
|
|
|
from pydantic_settings import BaseSettings
|
2022-12-17 08:53:50 +00:00
|
|
|
|
|
|
|
|
2024-12-26 23:34:54 +00:00
|
|
|
class Settings(BaseSettings):
|
|
|
|
redis_url: RedisDsn = RedisDsn("redis://localhost")
|
2022-12-17 08:53:50 +00:00
|
|
|
|
|
|
|
|
2025-01-01 18:18:38 +00:00
|
|
|
def get_settings() -> Settings:
|
|
|
|
return Settings()
|