mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2025-05-23 05:56:19 +03:00
9 lines
209 B
Python
9 lines
209 B
Python
from dependency_injector.wiring import Provide
|
|
|
|
from ...container import Container
|
|
from ...service import Service
|
|
|
|
|
|
def test_package_function(service: Service = Provide[Container.service]):
|
|
return service
|