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