gauc 0.1.20

Couchbase Rust Adapter / CLI
Documentation
1
2
3
4
5
6
7
use super::super::super::client::Client;

/// Handle "info" command
pub fn cmd_info(client: &mut Client) -> bool {
    println!("{:?}", client);
    return true;
}