mirror of
https://github.com/NousResearch/atropos.git
synced 2026-04-19 12:57:58 +00:00
13 lines
No EOL
352 B
Python
13 lines
No EOL
352 B
Python
from pydantic_settings import BaseSettings
|
|
|
|
class Settings(BaseSettings):
|
|
# Add any specific settings required by the application here
|
|
# For example:
|
|
# spotify_client_id: str | None = None
|
|
# spotify_client_secret: str | None = None
|
|
|
|
class Config:
|
|
env_file = ".env"
|
|
env_file_encoding = "utf-8"
|
|
|
|
settings = Settings() |