python-dependency-injector/tests/unit/samples/wiringsamples/package/subpackage/submodule.py
2020-10-20 17:39:57 -04:00

9 lines
201 B
Python

from dependency_injector.wiring import Provide
from ...container import Container
from ...service import Service
def test_function(service: Service = Provide[Container.service]):
return service