6 lines
87 B
Python
6 lines
87 B
Python
from flask_sqlalchemy import SQLAlchemy
|
|
|
|
|
|
def init_db(app):
|
|
return SQLAlchemy(app)
|