mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2025-02-18 20:40:59 +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"],
|
|
)
|