mirror of
https://github.com/HoneyryderChuck/httpx.git
synced 2025-10-07 00:05:02 -04:00
13 lines
288 B
Plaintext
13 lines
288 B
Plaintext
module HTTPX
|
|
module Transcoder
|
|
module Deflate
|
|
def self?.encode: (_Encoder body) -> Deflater
|
|
def self?.decode: (Response body, ?bytesize: Integer) -> GZIP::Inflater
|
|
|
|
class Deflater < Transcoder::Deflater
|
|
@deflater: Zlib::Deflate
|
|
end
|
|
end
|
|
end
|
|
end
|