Sha256: 193c25fb3ad24a0ca7aa0826331227462f30be037adad0381d809c9f678e0b03

Contents?: true

Size: 630 Bytes

Versions: 5

Compression:

Stored size: 630 Bytes

Contents

# frozen_string_literal: true

require_relative "request/parse_body"
require_relative "request/parse_path"

module ConvenientService
  module Examples
    module Standard
      class RequestParams
        module Utils
          module HTTP
            module Request
              class << self
                def parse_body(http_string)
                  ParseBody.call(http_string: http_string)
                end

                def parse_path(http_string)
                  ParsePath.call(http_string: http_string)
                end
              end
            end
          end
        end
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
convenient_service-0.17.0 lib/convenient_service/examples/standard/request_params/utils/http/request.rb
convenient_service-0.16.0 lib/convenient_service/examples/standard/request_params/utils/http/request.rb
convenient_service-0.15.0 lib/convenient_service/examples/standard/request_params/utils/http/request.rb
convenient_service-0.14.0 lib/convenient_service/examples/standard/request_params/utils/http/request.rb
convenient_service-0.13.0 lib/convenient_service/examples/standard/request_params/utils/http/request.rb