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.rs6
1 files changed, 4 insertions, 2 deletions
diff --git a/ipfs-api/src/response/mount.rs b/ipfs-api/src/response/mount.rs
index 94517a2..59f2bf3 100644
--- a/ipfs-api/src/response/mount.rs
+++ b/ipfs-api/src/response/mount.rs
@@ -9,9 +9,11 @@
#[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,
}