mirror of
https://github.com/maxdorninger/MediaManager.git
synced 2026-06-12 17:47:58 -04:00
15 lines
367 B
Python
15 lines
367 B
Python
from pydantic_settings import BaseSettings
|
|
|
|
|
|
class TmdbConfig(BaseSettings):
|
|
tmdb_relay_url: str = "https://metadata-relay.dorninger.co/tmdb"
|
|
|
|
|
|
class TvdbConfig(BaseSettings):
|
|
tvdb_relay_url: str = "https://metadata-relay.dorninger.co/tvdb"
|
|
|
|
|
|
class MetadataProviderConfig(BaseSettings):
|
|
tvdb: TvdbConfig = TvdbConfig()
|
|
tmdb: TmdbConfig = TmdbConfig()
|