summaryrefslogtreecommitdiffstats
path: root/ipfs-api/src/response/key.rs
diff options
context:
space:
mode:
Diffstat (limited to 'ipfs-api/src/response/key.rs')
-rw-r--r--ipfs-api/src/response/key.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/ipfs-api/src/response/key.rs b/ipfs-api/src/response/key.rs
index 2e3cf67..803642a 100644
--- a/ipfs-api/src/response/key.rs
+++ b/ipfs-api/src/response/key.rs
@@ -18,7 +18,8 @@ pub struct KeyPair {
#[derive(Debug, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct KeyPairList {
- #[serde(deserialize_with = "serde::deserialize_vec")] pub keys: Vec<KeyPair>,
+ #[serde(deserialize_with = "serde::deserialize_vec")]
+ pub keys: Vec<KeyPair>,
}
pub type KeyGenResponse = KeyPair;