mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2025-02-07 15:10:47 +03:00
9 lines
150 B
Python
9 lines
150 B
Python
"""Main package."""
|
|
|
|
from .containers import Container
|
|
from . import settings
|
|
|
|
|
|
container = Container()
|
|
container.config.from_dict(settings.__dict__)
|