first of all, thank you for creating Manos.
It was really easy to pick up and use for creating a simple REST API.
Not much overhead.
One thing that would be nice is more documentation; for example, there
is no API documentation :-(
I have one concrete problem:
I try to implement an API where URL parameters may occur several
times, e.g.
GET /users/predictions?item=42&item=70
ctx.Request.QueryData.GetString('item') returns 42.
ctx.Request.QueryData.GetList('item') returns null.
Is there a way to get a list with both 42 and 70 in it?
Any help/pointers would be appreciated.
Best regards,
Zeno