diff --git a/backend/src/main/kotlin/observer/nelle/nelleObserverBackend/Application.kt b/backend/src/main/kotlin/observer/nelle/nelleObserverBackend/Application.kt index 0536913..efb5fb5 100644 --- a/backend/src/main/kotlin/observer/nelle/nelleObserverBackend/Application.kt +++ b/backend/src/main/kotlin/observer/nelle/nelleObserverBackend/Application.kt @@ -8,16 +8,13 @@ import io.ktor.client.plugins.auth.* import io.ktor.client.plugins.auth.providers.* import io.ktor.http.* import io.ktor.server.application.* -import io.ktor.server.engine.* import io.ktor.server.netty.* import io.ktor.server.plugins.contentnegotiation.* import io.ktor.server.plugins.cors.routing.* import kotlinx.coroutines.runBlocking import observer.nelle.nelleObserverBackend.plugins.configureRouting -fun main(args: Array): Unit = - io.ktor.server.netty.EngineMain - .main(args) +fun main(args: Array): Unit = EngineMain.main(args) fun Application.module() { install(ContentNegotiation)