mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-24 02:24:02 +03:00
9 lines
153 B
Python
9 lines
153 B
Python
|
"""Project package."""
|
||
|
|
||
|
from .containers import Container
|
||
|
from . import settings
|
||
|
|
||
|
|
||
|
container = Container()
|
||
|
container.config.from_dict(settings.__dict__)
|