From 08f2dee9e317dcd96bea279e5e13f3ff3d70f133 Mon Sep 17 00:00:00 2001 From: Julien Lengrand-Lambert Date: Mon, 10 Jun 2024 22:43:38 +0200 Subject: [PATCH] Deployments are now active --- src/main/kotlin/quest/lengrand/plugins/Routing.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/quest/lengrand/plugins/Routing.kt b/src/main/kotlin/quest/lengrand/plugins/Routing.kt index 86b3aff..f6feb03 100644 --- a/src/main/kotlin/quest/lengrand/plugins/Routing.kt +++ b/src/main/kotlin/quest/lengrand/plugins/Routing.kt @@ -15,7 +15,7 @@ fun Application.configureRouting() { } get("/mood/{mood}"){ - call.respondText("Feeling ${call.parameters["mood"]}?") + call.respondText("Are you feeling ${call.parameters["mood"]}?") } } }