From e84df59c6365a886d2cd00aa10c0dab823bfc299 Mon Sep 17 00:00:00 2001 From: Stefan Mogeritsch Date: Fri, 27 Feb 2026 13:15:15 +0100 Subject: [PATCH] Remove duplicate response in `Main.kt` routing --- src/main/kotlin/Main.kt | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/kotlin/Main.kt b/src/main/kotlin/Main.kt index 29008d6..6638eec 100644 --- a/src/main/kotlin/Main.kt +++ b/src/main/kotlin/Main.kt @@ -11,7 +11,6 @@ fun main() { routing { get("/") { call.respondText("Zora meldet: Kotlin-Service ist ONLINE auf ARM64! 🚀") - call.respondText("Zora meldet: Kotlin-Service ist ONLINE auf ARM64! 🚀") } } }.start(wait = true)