4 lines
81 B
Python
4 lines
81 B
Python
|
|
from sqlalchemy.orm import DeclarativeBase
|
||
|
|
|
||
|
|
class Base(DeclarativeBase):
|
||
|
|
pass
|