13 lines
206 B
Python
13 lines
206 B
Python
|
from sqlalchemy import select, update, delete, insert
|
||
|
from sqlalchemy.orm import relationship
|
||
|
|
||
|
from app.extensions import db
|
||
|
|
||
|
__all__ = [
|
||
|
"db",
|
||
|
"select",
|
||
|
"update",
|
||
|
"delete",
|
||
|
"insert",
|
||
|
]
|