Module: ConvenientService::Examples::Standard::V1::RequestParams::Utils::HTTP::Request
- Defined in:
- lib/convenient_service/examples/standard/v1/request_params/utils/http/request.rb,
lib/convenient_service/examples/standard/v1/request_params/utils/http/request/parse_body.rb,
lib/convenient_service/examples/standard/v1/request_params/utils/http/request/parse_path.rb
Defined Under Namespace
Classes: ParseBody, ParsePath
Class Method Summary
collapse
Class Method Details
.parse_body(http_string) ⇒ Object
15
16
17
|
# File 'lib/convenient_service/examples/standard/v1/request_params/utils/http/request.rb', line 15
def parse_body(http_string)
ParseBody.call(http_string: http_string)
end
|
.parse_path(http_string) ⇒ Object
19
20
21
|
# File 'lib/convenient_service/examples/standard/v1/request_params/utils/http/request.rb', line 19
def parse_path(http_string)
ParsePath.call(http_string: http_string)
end
|