Hi all I have the following route definition: ``` ...
# ktor
z
Hi all I have the following route definition:
Copy code
routing {
        route("/api") {
            get("/interests") {
                call.respondText("hello world")
            }
        }
    }