
implementation("io.ktor:ktor-server-host-common:3.0.2")The `ktor-server-host-common` module has been removed in Ktor 3.0.0. Its contents have been merged into the `ktor-server-core` module, specifically within the `io.ktor.server.engine` package. This change was made because the `Application` class now requires knowledge of `ApplicationEngine`. To adapt to this update, you should remove the `ktor-server-host-common` dependency from your project and ensure that your dependencies are updated accordingly.