Is it possible to iterate over all declared depend...
# koin
d
Is it possible to iterate over all declared dependencies from an specific module?
a
what is your need here?
d
Want to iterate over a special type of beans and do some checks on properties. Like
Copy code
when {
  bean.domain !in domains -> throw     Exception("Boom")
bean.service !in services -> throw Exception("Boom")
}