mhdzumair's picture
Remove #EXT-X-PROGRAM-DATE-TIME tags, live stream delay due to playback not supported in ExoPlayer
418a6d3
raw
history blame contribute delete
331 Bytes
from pydantic_settings import BaseSettings
class Settings(BaseSettings):
api_password: str # The password for accessing the API endpoints.
proxy_url: str | None = None # The URL of the proxy server to route requests through.
class Config:
env_file = ".env"
extra = "ignore"
settings = Settings()