Denis Abramov
Denis Abramov
Is there a way to auto-wire? e.g.: class B: @inject def __init__(self, registered_class: IRegisteredClass): ... Why do I need to specify Provider[...]. If all are wired why not just auto-wire...
Environment: Using Python 3.12 and latest grpcio-tools library. When running `pipdeptree` on grpcio-tools library: 1. shows incorrect dep to protobuf (related to previous issue I raised) 2. doesn’t show dependency...
Is there a way to implement transient or scoped dependency? I am thinking of a way to create services that would only exist for the life of the api request...