mirror of
https://github.com/maxdorninger/MediaManager.git
synced 2026-04-19 15:54:12 +02:00
15 lines
359 B
Python
15 lines
359 B
Python
from pydantic_settings import BaseSettings
|
|
|
|
|
|
class TmdbConfig(BaseSettings):
|
|
tmdb_relay_url: str = "https://metadata-relay.maxid.me/tmdb"
|
|
|
|
|
|
class TvdbConfig(BaseSettings):
|
|
tvdb_relay_url: str = "https://metadata-relay.maxid.me/tvdb"
|
|
|
|
|
|
class MetadataProviderConfig(BaseSettings):
|
|
tvdb: TvdbConfig = TvdbConfig()
|
|
tmdb: TmdbConfig = TmdbConfig()
|