Hello, could someone help me with getting all inst...
# kodein
v
Hello, could someone help me with getting all instances of the registered bindings for the same Interface? For example I have such interface
interface IInitableStore<TData : Any?>
then I register them with different generics
Copy code
`
bind<IInitableStore<List<VerificationFlow>>>() with singleton { VerificationFlowStore() }
bind<IInitableStore<AuthLoginInfo?>>() with singleton { AuthLoginInfoStore() }
Is it possible to retrieve list of all
IInitableStore
?