1 2 3 4 5 6 7
use {Error, protocol}; use server::client::Action; /// Handle the 'SYST' command. pub fn handle() -> Result<Action, Error> { Ok(Action::Reply(protocol::reply::syst::success(protocol::rfc1700::system::UNIX.to_owned()))) }