Hey, if I load my modules via config file, do I ha...
# ktor
k
Hey, if I load my modules via config file, do I have to install same plugins in each one? I understand that if I have one module, which calls other modules, it shares Application instance, so I wonder if it's the same case
b
Nope, it's all the same Application instance, so it's the same as calling all the extension functions from the one module
The advantage with multiple modules referenced from the config file is that you can modify which modules you want to load from the config file in the environment
k
Thanks, that make sense. Are modules from config file loaded in order?
b
Yep 👍
k
Thank you 🙏