Sha256: 09d8dea24ad8674ddff8407a082b410c451ac5a624566c55ec48663f226ce015

Contents?: true

Size: 688 Bytes

Versions: 4

Compression:

Stored size: 688 Bytes

Contents

# frozen_string_literal: true

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

module ConvenientService
  module Examples
    module Standard
      module V1
        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
end

Version data entries

4 entries across 4 versions & 1 rubygems

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