mirror of
https://github.com/HoneyryderChuck/httpx.git
synced 2025-10-08 00:02:42 -04:00
15 lines
264 B
Ruby
15 lines
264 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "httpx/version"
|
|
|
|
require "httpx/errors"
|
|
require "httpx/timeout/per_operation"
|
|
require "httpx/timeout/global"
|
|
require "httpx/timeout/null"
|
|
require "httpx/options"
|
|
require "httpx/chainable"
|
|
|
|
module HTTPX
|
|
extend Chainable
|
|
end
|