summaryrefslogtreecommitdiffstats
path: root/ipfs-api/src/response/refs.rs
diff options
context:
space:
mode:
Diffstat (limited to 'ipfs-api/src/response/refs.rs')
-rw-r--r--ipfs-api/src/response/refs.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/ipfs-api/src/response/refs.rs b/ipfs-api/src/response/refs.rs
index c54dd53..6f66cf0 100644
--- a/ipfs-api/src/response/refs.rs
+++ b/ipfs-api/src/response/refs.rs
@@ -9,7 +9,8 @@
#[derive(Debug, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct RefsLocalResponse {
- #[serde(rename = "Ref")] pub reference: String,
+ #[serde(rename = "Ref")]
+ pub reference: String,
pub err: String,
}