Unfiltered offers an easy way to specify routes.
case GET(Path("/ask")) =>
It also offers an easy way to extract parameters.
case Params(params) =>
What if I want to do both? What is good style for this? I realize I could:
case req @ GET(Path("/ask"))
and use req.parameterValues
req
Params.unapply
directlyWhat should I do?