mirror of
https://github.com/grey-cat-1908/formaptix-server.git
synced 2024-11-11 18:57:27 +03:00
12 lines
199 B
Python
12 lines
199 B
Python
import pydantic
|
|
|
|
|
|
class BaseModel(pydantic.BaseModel):
|
|
class Config:
|
|
from_attributes = True
|
|
|
|
|
|
from .settings import settings
|
|
from .user import *
|
|
from .form import *
|
|
from .answer import *
|