mirror of
				https://github.com/langgenius/dify.git
				synced 2025-10-31 19:03:09 +00: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)
 | 
