mirror of
https://github.com/creyD/apilog.git
synced 2026-04-12 19:30:29 +02:00
11 lines
276 B
Python
11 lines
276 B
Python
from creyPY.fastapi.schemas.base import BaseSchemaModelOUT as TemplateOUT
|
|
from pydantic import BaseModel, ConfigDict
|
|
|
|
|
|
class BaseSchemaModelIN(BaseModel):
|
|
model_config = ConfigDict(from_attributes=True)
|
|
|
|
|
|
class BaseSchemaModelOUT(BaseSchemaModelIN, TemplateOUT):
|
|
pass
|