mirror of
https://github.com/maxdorninger/MediaManager.git
synced 2026-04-18 04:53:59 +02:00
make all var names lower case and fix circular imports
This commit is contained in:
@@ -2,8 +2,8 @@ from pydantic_settings import BaseSettings
|
||||
|
||||
|
||||
class DbConfig(BaseSettings):
|
||||
HOST: str = "localhost"
|
||||
PORT: int = 5432
|
||||
USER: str = "MediaManager"
|
||||
PASSWORD: str = "MediaManager"
|
||||
DBNAME: str = "MediaManager"
|
||||
host: str
|
||||
port: int = 5432
|
||||
user: str = "MediaManager"
|
||||
password: str = "MediaManager"
|
||||
dbname: str = "MediaManager"
|
||||
|
||||
Reference in New Issue
Block a user