11 lines
152 B
Python
11 lines
152 B
Python
from flask_sqlalchemy import SQLAlchemy
|
|
|
|
from base import database
|
|
|
|
db = SQLAlchemy()
|
|
|
|
|
|
def init_app(app):
|
|
global db
|
|
db = database.init_db(app)
|