You can have all your bindings in one or more bind...
# kodein
s
You can have all your bindings in one or more bindings and then create a kodein instance with the given bindings :
Copy code
val testModule = Kodein.Module {
   /*... bindings ...*/
}

val kodein = Kodein {
  import(testModule) // or appModule
}