12 lines
192 B
Python
12 lines
192 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class DatabaseConfig(BaseModel):
|
|
user: str
|
|
password: str
|
|
host: str
|
|
port: int
|
|
database: str
|
|
|
|
class Config(BaseModel):
|
|
db: DatabaseConfig |