Sterling Albury
05/29/2022, 4:41 AMclass Foo(paramOne: Set<MyInterface>, paramTwo: Set<MyInterface>)
. When I've used Dagger/Hilt, I was able to use some custom annotations to mark the injection def and constructor params with to get the correct di. does anyone know if Koin has anything similar? I've been trying to just used named qualifiers but not sure how to collect the dependencies into a set. I've been using getKoin().getAll().toSet()
to collection groups of deps, but don't see a way to specify a qualifier. not sure if there's a way to use annotations (the koin annotations lib didn't seem that useful at first glance)