mirror of
				https://github.com/ets-labs/python-dependency-injector.git
				synced 2025-11-01 00:17:55 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			197 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			197 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| """Services module."""
 | |
| 
 | |
| 
 | |
| class ConfigService:
 | |
|     def __init__(self, config):
 | |
|         self._config = config
 | |
| 
 | |
|     def build(self):
 | |
|         self._config.from_dict({'default': {'db_path': '~/test'}})
 |