flep 0.2.0

File transfer protocol (FTP) library
Documentation
//! FTP server library.

pub extern crate flep_protocol as protocol;

extern crate mio;
extern crate uuid;
#[macro_use]
extern crate error_chain;
#[macro_use]
extern crate log;

pub use self::credentials::Credentials;
pub use self::errors::*;

pub use protocol::FileType;

pub mod server;
pub mod io;
pub mod fs;
pub mod util;
mod credentials;
mod errors;