summaryrefslogtreecommitdiffstats
path: root/ipfs-cli/src/command/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'ipfs-cli/src/command/mod.rs')
-rw-r--r--ipfs-cli/src/command/mod.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/ipfs-cli/src/command/mod.rs b/ipfs-cli/src/command/mod.rs
index 7d12053..351bcf6 100644
--- a/ipfs-cli/src/command/mod.rs
+++ b/ipfs-cli/src/command/mod.rs
@@ -9,11 +9,9 @@
use std::error::Error;
use std::fs;
-
pub const EXPECTED_API: &str = "expected response from API";
pub const EXPECTED_FILE: &str = "expected to read input file";
-
/// Verifies that a path points to a file that exists, and not a directory.
///
pub fn verify_file(path: String) -> Result<(), String> {
@@ -24,7 +22,6 @@ pub fn verify_file(path: String) -> Result<(), String> {
}
}
-
pub mod add;
pub mod bitswap;
pub mod block;