You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 10, 2019. It is now read-only.
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).
The text was updated successfully, but these errors were encountered:
While we currently explicitly support
GET
andPOST
requests, we should support arbitrary request types as well.Implementing this would only mean changing from multiple
map<String, MethodWrapper>
to onemap<String, map<String, MethodWrapper>>
where the first string is the request type (soGET
maps to a map of get request paths/methods).The text was updated successfully, but these errors were encountered: