mirror of
https://github.com/langgenius/dify.git
synced 2026-02-14 01:00:52 -05:00
11 lines
268 B
Python
11 lines
268 B
Python
from flask_socketio import SocketIO
|
|
|
|
from configs import dify_config
|
|
from dify_app import DifyApp
|
|
|
|
ext_socketio = SocketIO()
|
|
|
|
|
|
def init_app(app: DifyApp):
|
|
ext_socketio.init_app(app, async_mode="gevent", cors_allowed_origins=dify_config.CONSOLE_CORS_ALLOW_ORIGINS)
|