summaryrefslogtreecommitdiffstats
path: root/ipfs-api/src/response/filestore.rs
diff options
context:
space:
mode:
Diffstat (limited to 'ipfs-api/src/response/filestore.rs')
-rw-r--r--ipfs-api/src/response/filestore.rs6
1 files changed, 1 insertions, 5 deletions
diff --git a/ipfs-api/src/response/filestore.rs b/ipfs-api/src/response/filestore.rs
index f2f62e5..5b369bc 100644
--- a/ipfs-api/src/response/filestore.rs
+++ b/ipfs-api/src/response/filestore.rs
@@ -9,13 +9,11 @@
#[derive(Debug, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct FilestoreDupsResponse {
- #[serde(rename = "Ref")]
- pub reference: String,
+ #[serde(rename = "Ref")] pub reference: String,
pub err: String,
}
-
#[derive(Debug, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct FilestoreObject {
@@ -27,8 +25,6 @@ pub struct FilestoreObject {
pub size: u64,
}
-
pub type FilestoreLsResponse = FilestoreObject;
-
pub type FilestoreVerifyResponse = FilestoreObject;