Merge edmundman's UFC_FIGHT_PREDICTOR contribution

This commit is contained in:
Shannon Sands 2025-05-23 15:33:02 +10:00
parent 0e660a7429
commit 606b917042
73 changed files with 25564 additions and 3223 deletions

View file

@ -0,0 +1,15 @@
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()