Claudio Caletti
Claudio Caletti
## requirements - Add CORS support ## specs {optional: describe technical specs to implement this feature, if not obvious} ## misc - https://github.com/lomigmegard/akka-http-cors
In wiro we are forcing responses to have type `Future[Either[_, _]]`. While `Future` is automagically handled by autowire, `Either` is not. This information is lost on the wire (i.e. http/s)....
## requirements Generalize errors so that they don't depend on http.
## requirements - Allow the user to setup wiro to return an error when receiving a request with non-defined parameters. e.g. given the following route `cat/meow` (having no params), the...
## requirements - Add paternalistic default to option parameters to None if the user didn't specify one ## specs given: ```scala wa: Option[Int] ``` convert it to: ```scala wa: Option[Int]...
## requirements Wiro should not depend on Circe.