mirror of
https://github.com/reconurge/flowsint.git
synced 2026-07-19 23:50:14 -05:00
7 lines
108 B
Python
7 lines
108 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class ORMBase(BaseModel):
|
|
class Config:
|
|
from_attributes = True
|