1. It's written that this lib does not have `wiring`. What's the alternative and why it does not matter? What do I need to change? 2. I'm using _dead_ `dependency_injector` for fastapi. Does `that-depends` support passing the `request: Request` into the dependency? https://that-depends.readthedocs.io/introduction/fastapi.html ``` @app.get("/") async def read_root( some_dependency: typing.Annotated[ container.DependentFactory, fastapi.Depends(container.DIContainer.dependent_factory), ], ) -> datetime.datetime: return some_dependency.async_resource ``` In the above example, I need that the instance of `dependent_factory` to have access to the `request` object of fastapi. How can this be implemented?
wiring. What's the alternative and why it does not matter? What do I need to change?dependency_injectorfor fastapi. Doesthat-dependssupport passing therequest: Requestinto the dependency?https://that-depends.readthedocs.io/introduction/fastapi.html
In the above example, I need that the instance of
dependent_factoryto have access to therequestobject of fastapi. How can this be implemented?