Hi guys. I have a question regarding reloading of modules. In my app I have a base module where the application class is located which starts koin. Than I have a couple of (feature) modules depending on the base module but do not know anything about each other. Now I have a library with where the users login is handled (in a singleton class). I need the same instance in both feature modules but when I try to load the same module twice, koin is telling me, that the definitions already exists and the app crashes. So the question is, how can I (re)load this "account" module without crashing the app? (To declare the modules in the base module is no option for me)