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.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/ipfs-api/src/response/refs.rs b/ipfs-api/src/response/refs.rs
index 457a9f7..c54dd53 100644
--- a/ipfs-api/src/response/refs.rs
+++ b/ipfs-api/src/response/refs.rs
@@ -9,13 +9,11 @@
#[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,
}
-
#[cfg(test)]
mod tests {
deserialize_test!(v0_refs_local_0, RefsLocalResponse);