1use std::io::prelude::*; 2use flate2::read::GzDecoder; 3 4pub fn get_gzip_decoder<R: Read>(reader: R) -> GzDecoder<R> { 5 GzDecoder::new(reader) 6}