module HTTPX

def self.const_missing(const_name)

:nocov:
def self.const_missing(const_name)
  super unless const_name == :Client
  warn "DEPRECATION WARNING: the class #{self}::Client is deprecated. Use #{self}::Session instead."
  Session
end