//! This crate is my attempt at writting a FTP sync client
//! using Rust, it should contain most commands useful to
//! a regular client with ease of use. Additional internal
//! functionality is also exposed to avoid limiting the user
//! to the current implementation.
//!
//! Listing the files on the current working directory looks like
//! below when using this crate:
//! ```rust
//! use ftp_client::prelude::*;
//!
//! fn main() -> Result<(), ftp_client::error::Error> {
//! let mut client = Client::connect("test.rebex.net", "demo", "password")?;
//! let names = client.list_names("/")?;
//! println!("Listing names: ");
//! for name in names {
//! println!("{}", name);
//! }
//! Ok(())
//! }
//! ```
//!
/// The prelude module contains some useful default imports.