mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-04-22 05:39:42 +08:00
14 lines
276 B
Python
14 lines
276 B
Python
from configs import dify_config
|
|
from dify_app import DifyApp
|
|
|
|
|
|
def is_enabled() -> bool:
|
|
return dify_config.API_COMPRESSION_ENABLED
|
|
|
|
|
|
def init_app(app: DifyApp):
|
|
from flask_compress import Compress # type: ignore
|
|
|
|
compress = Compress()
|
|
compress.init_app(app)
|