what would people here prefer ``` app.get("/") { ...
# server
t
what would people here prefer
Copy code
app.get("/") { req, res-> res.body("Hello World") }
or
Copy code
app.get("/") { ctx -> ctx.body("Hello World") }
where ctx contains both request and response