It seems like you might need some changes to the P...
# opensavvy
d
It seems like you might need some changes to the Prepared Ktor module for ktor 3: https://ktor.io/docs/eap/migrating-3.html#explicit-module-loading
c
Thanks for the heads up! I don't think I need to change anything though:
Copy code
val server by preparedServer {
    application {
        // …load your modules…
    }
}

val client by server.preparedClient()
d
Yeah, I guess... but that might break users existing tests, although I guess it's maybe not the responsibility of a test framework to do this... I personally don't use config files, so it's not a big deal. But there are other changes there, just in case you might be using something like that.