httpx/lib/httpx.rb
2017-11-28 18:12:02 +00:00

16 lines
248 B
Ruby

# frozen_string_literal: true
require "httpx/version"
require "httpx/callbacks"
require "httpx/options"
require "httpx/connection"
require "httpx/headers"
require "httpx/request"
require "httpx/response"
require "httpx/client"
module HTTPX
end