Hello, I am wondering can you define a koin module...
# koin
m
Hello, I am wondering can you define a koin module in a 3rd party library, and then just import that into your koin application? (eg. we have a library that we want to maintain its own wiring with koin as we use koin in our main application)
a
You can check the “context isolation” part, to have an isolated koin app for your sdk, while using koin in your app - https://insert-koin.io/docs/reference/koin-core/context-isolation
But, if you are the only user of your lib, you could just define a module and use it from your app 🤔
m
thank you!