get method
Adds a route definition for the GET HTTP method.
Equivalent to calling add(Method.get, path, value).
Implementation
void get(final String path, final T value) => add(Method.get, path, value);
Adds a route definition for the GET HTTP method.
Equivalent to calling add(Method.get, path, value).
void get(final String path, final T value) => add(Method.get, path, value);