#[cfg(feature = "data")]
pub mod data;
#[cfg(feature = "file")]
pub mod file;
#[cfg(any(feature = "ftp", feature = "ftps"))]
pub mod ftp;
#[cfg(feature = "git")]
pub mod git;
#[cfg(any(feature = "http", feature = "https"))]
pub mod http;
#[cfg(feature = "ipfs")]
pub mod ipfs;
#[cfg(feature = "scp")]
pub mod scp;
#[cfg(feature = "stdin")]
pub mod stdin;
#[cfg(any(feature = "http", feature = "https", feature = "git", feature = "ipfs"))]
mod request;