summaryrefslogtreecommitdiffstats
path: root/ipfs-cli/src/command/version.rs
diff options
context:
space:
mode:
Diffstat (limited to 'ipfs-cli/src/command/version.rs')
-rw-r--r--ipfs-cli/src/command/version.rs7
1 files changed, 2 insertions, 5 deletions
diff --git a/ipfs-cli/src/command/version.rs b/ipfs-cli/src/command/version.rs
index d8fbafa..eea3f7f 100644
--- a/ipfs-cli/src/command/version.rs
+++ b/ipfs-cli/src/command/version.rs
@@ -10,7 +10,6 @@ use clap::App;
use ipfs_api::IpfsClient;
use tokio_core::reactor::Core;
-
pub fn signature<'a, 'b>() -> App<'a, 'b> {
clap_app!(
@subcommand version =>
@@ -18,11 +17,9 @@ pub fn signature<'a, 'b>() -> App<'a, 'b> {
)
}
-
pub fn handle(core: &mut Core, client: &IpfsClient) {
- let version = core.run(client.version()).expect(
- "expected response from API",
- );
+ let version = core.run(client.version())
+ .expect("expected response from API");
println!();
println!(" version : {}", version.version);