summaryrefslogtreecommitdiffstats
path: root/ipfs-api/src/response/repo.rs
diff options
context:
space:
mode:
Diffstat (limited to 'ipfs-api/src/response/repo.rs')
-rw-r--r--ipfs-api/src/response/repo.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/ipfs-api/src/response/repo.rs b/ipfs-api/src/response/repo.rs
index 9e31eb1..7037c79 100644
--- a/ipfs-api/src/response/repo.rs
+++ b/ipfs-api/src/response/repo.rs
@@ -18,7 +18,8 @@ pub struct RepoFsckResponse {
#[derive(Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct RepoGcResponse {
- #[serde(deserialize_with = "serde::deserialize_hashmap")] pub key: HashMap<String, String>,
+ #[serde(deserialize_with = "serde::deserialize_hashmap")]
+ pub key: HashMap<String, String>,
pub error: Option<String>,
}