summaryrefslogtreecommitdiffstats
path: root/ipfs-api/src/response/config.rs
diff options
context:
space:
mode:
Diffstat (limited to 'ipfs-api/src/response/config.rs')
-rw-r--r--ipfs-api/src/response/config.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/ipfs-api/src/response/config.rs b/ipfs-api/src/response/config.rs
index 81e8caf..0bacf98 100644
--- a/ipfs-api/src/response/config.rs
+++ b/ipfs-api/src/response/config.rs
@@ -6,6 +6,16 @@
// copied, modified, or distributed except according to those terms.
//
+use crate::serde::Deserialize;
+
+#[derive(Debug, Deserialize)]
+#[serde(rename_all = "PascalCase")]
+pub struct ConfigResponse {
+ pub key: String,
+
+ pub value: serde_json::value::Value,
+}
+
pub type ConfigEditResponse = ();
pub type ConfigReplaceResponse = ();