mirror of
				https://github.com/langgenius/dify.git
				synced 2025-10-26 00:18:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			201 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			201 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from flask import Flask
 | |
| 
 | |
| from core.hosting_configuration import HostingConfiguration
 | |
| 
 | |
| hosting_configuration = HostingConfiguration()
 | |
| 
 | |
| 
 | |
| def init_app(app: Flask):
 | |
|     hosting_configuration.init_app(app)
 | 
