mirror of
https://github.com/reconurge/flowsint.git
synced 2026-05-01 11:48:38 -05:00
7 lines
108 B
Python
7 lines
108 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class ORMBase(BaseModel):
|
|
class Config:
|
|
from_attributes = True
|