use {Error, protocol};
use server::client::{ClientState, Action};
pub fn handle(client: &mut ClientState) -> Result<Action, Error> {
let session = client.session.expect_ready()?;
Ok(Action::Reply(protocol::reply::pwd::success(&session.working_dir)))
}