7 lines
89 B
Python
7 lines
89 B
Python
|
|
from sqlalchemy.orm import DeclarativeBase
|
|
|
|
|
|
class ModelBase(DeclarativeBase):
|
|
pass
|