mirror of
https://github.com/langgenius/dify.git
synced 2026-02-15 13:00:50 -05:00
10 lines
268 B
Python
10 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) |