mirror of
				https://github.com/ets-labs/python-dependency-injector.git
				synced 2025-11-01 00:17:55 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			283 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			283 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| """Main module."""
 | |
| 
 | |
| from .containers import Application
 | |
| 
 | |
| 
 | |
| if __name__ == '__main__':
 | |
|     application = Application()
 | |
|     config = application.service.config()
 | |
|     config.build()
 | |
| 
 | |
|     print(application.repository.site())
 | |
|     # Output: Adapter=[DB Path=[~/test]], queue=[Some storage]
 |