so I'm trying to use Koin (v3.1.6) to set up some ...
# android
s
so I'm trying to use Koin (v3.1.6) to set up some di in my project. I have an interface that fall into two groups of implementations. I have some classes that take the two groups of these interfaces as deps as sets. so
class 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)