How would you define ```routing { get("/"...
# ktor
p
How would you define
Copy code
routing {
        get("/") {
            call.respondText("Filterz!", ContentType.Text.Html)
        }
  }
extracting the body of the get call 😕 I'm still a kotlin noob. I'm aware of the "Locations" feature but i'm not a fan of anotations although it really seems what I need. i'd like something like this
Copy code
routing { get("/", getIndexHandler )}