mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-04-21 05:09:41 +08:00
11 lines
216 B
Python
11 lines
216 B
Python
from flask import Flask
|
|
|
|
|
|
def init_app(app: Flask):
|
|
if app.config.get('API_COMPRESSION_ENABLED', False):
|
|
from flask_compress import Compress
|
|
|
|
compress = Compress()
|
|
compress.init_app(app)
|
|
|