mirror of
				https://github.com/ets-labs/python-dependency-injector.git
				synced 2025-11-04 01:47:36 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			159 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			159 B
		
	
	
	
		
			Python
		
	
	
	
	
	
"""Main module."""
 | 
						|
 | 
						|
from .application import create_app
 | 
						|
 | 
						|
 | 
						|
if __name__ == "__main__":
 | 
						|
    app = create_app()
 | 
						|
    app.run(host="0.0.0.0", port=8000, debug=True)
 |