This repository was archived by the owner on Sep 10, 2019. It is now read-only.
This repository was archived by the owner on Sep 10, 2019. It is now read-only.
Permit arbitrary request types #28
Open
Description
While we currently explicitly support GET
and POST
requests, we should support arbitrary request types as well.
Implementing this would only mean changing from multiple map<String, MethodWrapper>
to one map<String, map<String, MethodWrapper>>
where the first string is the request type (so GET
maps to a map of get request paths/methods).