mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-04-21 13:19:43 +08:00

Signed-off-by: -LAN- <laipz8200@outlook.com> Co-authored-by: -LAN- <laipz8200@outlook.com>
14 lines
260 B
Python
14 lines
260 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
|
|
|
|
compress = Compress()
|
|
compress.init_app(app)
|