mirror of
https://github.com/maxdorninger/MediaManager.git
synced 2026-04-17 21:54:00 +02: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()
|