django and fastapi apps
This commit is contained in:
8
api/schemas/base.py
Normal file
8
api/schemas/base.py
Normal file
@@ -0,0 +1,8 @@
|
||||
"""Pydantic Base Schema - GENERATED FILE"""
|
||||
|
||||
from pydantic import BaseModel, ConfigDict
|
||||
|
||||
|
||||
class BaseSchema(BaseModel):
|
||||
"""Base schema with ORM mode."""
|
||||
model_config = ConfigDict(from_attributes=True)
|
||||
Reference in New Issue
Block a user