ext_database.py 101 B

12345678
  1. from flask_sqlalchemy import SQLAlchemy
  2. db = SQLAlchemy()
  3. def init_app(app):
  4. db.init_app(app)