mirror of
https://github.com/langgenius/dify.git
synced 2025-12-19 17:27:16 -05:00
8 lines
195 B
Python
8 lines
195 B
Python
from core.db.session_factory import configure_session_factory
|
|
from extensions.ext_database import db
|
|
|
|
|
|
def init_app(app):
|
|
with app.app_context():
|
|
configure_session_factory(db.engine)
|