mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-24 02:24:02 +03:00
9 lines
165 B
Python
9 lines
165 B
Python
|
"""Wiring sample package."""
|
||
|
|
||
|
|
||
|
def wire_with_relative_string_names(container):
|
||
|
container.wire(
|
||
|
modules=[".module"],
|
||
|
packages=[".package"],
|
||
|
)
|