mirror of
https://github.com/maxdorninger/MediaManager.git
synced 2025-12-23 22:18:19 -05:00
10 lines
223 B
Python
10 lines
223 B
Python
from pydantic_settings import BaseSettings
|
|
|
|
|
|
class DbConfig(BaseSettings):
|
|
host: str = "localhost"
|
|
port: int = 5432
|
|
user: str = "MediaManager"
|
|
password: str = "MediaManager"
|
|
dbname: str = "MediaManager"
|