mirror of
https://github.com/langgenius/dify.git
synced 2025-11-09 16:03:39 +00:00
9 lines
217 B
Python
9 lines
217 B
Python
from flask_orjson import OrjsonProvider
|
|
|
|
from dify_app import DifyApp
|
|
|
|
|
|
def init_app(app: DifyApp) -> None:
|
|
"""Initialize Flask-Orjson extension for faster JSON serialization"""
|
|
app.json = OrjsonProvider(app)
|