summaryrefslogtreecommitdiffstats
path: root/ipfs-api/src/response/mount.rs
diff options
context:
space:
mode:
Diffstat (limited to 'ipfs-api/src/response/mount.rs')
-rw-r--r--ipfs-api/src/response/mount.rs7
1 files changed, 2 insertions, 5 deletions
diff --git a/ipfs-api/src/response/mount.rs b/ipfs-api/src/response/mount.rs
index 1479aa3..94517a2 100644
--- a/ipfs-api/src/response/mount.rs
+++ b/ipfs-api/src/response/mount.rs
@@ -9,16 +9,13 @@
#[derive(Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct MountResponse {
- #[serde(rename = "IPFS")]
- pub ipfs: String,
+ #[serde(rename = "IPFS")] pub ipfs: String,
- #[serde(rename = "IPNS")]
- pub ipns: String,
+ #[serde(rename = "IPNS")] pub ipns: String,
pub fuse_allow_other: bool,
}
-
#[cfg(test)]
mod tests {
deserialize_test!(v0_mount_0, MountResponse);