mirror of
https://github.com/maxdorninger/MediaManager.git
synced 2026-04-17 15:43:28 +02:00
9 lines
244 B
Python
9 lines
244 B
Python
from pydantic_settings import BaseSettings, SettingsConfigDict
|
|
|
|
|
|
class ProwlarrConfig(BaseSettings):
|
|
model_config = SettingsConfigDict(env_prefix="PROWLARR_")
|
|
enabled: bool = True
|
|
api_key: str
|
|
url: str = "http://localhost:9696"
|