mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-04-21 05:09:41 +08:00
12 lines
235 B
Python
12 lines
235 B
Python
from flask import Flask
|
|
|
|
from configs import dify_config
|
|
|
|
|
|
def init_app(app: Flask):
|
|
if dify_config.API_COMPRESSION_ENABLED:
|
|
from flask_compress import Compress
|
|
|
|
compress = Compress()
|
|
compress.init_app(app)
|