1 2 3 4 5 6 7 8 9 10
//! This modules implements a line parser for FTP control channel commands //! //! Use the parse method. It takes an FTP line and returns an instance of the Command enum. //! pub mod error; mod parser; #[cfg(test)] mod tests; pub use parser::parse;