mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-24 02:24:02 +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'}})
|