is there a nice pattern for putting qualifiers som...
# koin
d
is there a nice pattern for putting qualifiers somewhere to share? i can just export
named("whatever")
as a top-level variable from a file, but it would be nice if i could like, add one to a module so that a user of a module could pull it off, like
Copy code
startKoin {
  modules(listOf(
    someModule,
    module {
      single(someModule.thatParticularThing) { MakeThing() }
    }))
}