orangy
/, one via get("/") { Hello.respond(call) } and second with defaultResource("index.html"). They are both executed, and second tries to send a response after it has already been sent by first. Now, the question is what to do:
– throw exception when trying to install second handler for the same route.
– stop executing handlers when the response has been sent
– leave it as is
– something else?