to modularize my ktor server project all i have to...
# ktor
l
to modularize my ktor server project all i have to do is create new gradle modules and reference their
module
extension function in the config.yaml file?
a
Ktor's modules are simply extension functions for the
Application
class. When referenced in the configuration file loaded by the server, these modules will be executed automatically during server startup. So what do you mean by modularization?
l
By modularization i mean splitting my project into multiple gradle submodules