6 lines
91 B
Python
6 lines
91 B
Python
|
from sqlalchemy.orm import declarative_base
|
||
|
|
||
|
Base = declarative_base()
|
||
|
|
||
|
__all__ = ["Base"]
|