summaryrefslogtreecommitdiffstats
path: root/ipfs-api/src/response/log.rs
diff options
context:
space:
mode:
Diffstat (limited to 'ipfs-api/src/response/log.rs')
-rw-r--r--ipfs-api/src/response/log.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/ipfs-api/src/response/log.rs b/ipfs-api/src/response/log.rs
index da3fb34..90ad35f 100644
--- a/ipfs-api/src/response/log.rs
+++ b/ipfs-api/src/response/log.rs
@@ -17,7 +17,8 @@ pub struct LogLevelResponse {
#[derive(Debug, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct LogLsResponse {
- #[serde(deserialize_with = "serde::deserialize_vec")] pub strings: Vec<String>,
+ #[serde(deserialize_with = "serde::deserialize_vec")]
+ pub strings: Vec<String>,
}
#[cfg(test)]