summaryrefslogtreecommitdiff
path: root/src/legacy_json_output/accounts.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/legacy_json_output/accounts.rs')
-rw-r--r--src/legacy_json_output/accounts.rs15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/legacy_json_output/accounts.rs b/src/legacy_json_output/accounts.rs
deleted file mode 100644
index 705f4ea..0000000
--- a/src/legacy_json_output/accounts.rs
+++ /dev/null
@@ -1,15 +0,0 @@
-use just_enough_vcs::lib::data::member::MemberId;
-use serde::{Deserialize, Serialize};
-use std::collections::HashMap;
-
-#[derive(Debug, Default, Serialize, Deserialize)]
-#[serde(rename_all = "PascalCase")]
-pub struct AccountListJsonResult {
- pub result: HashMap<MemberId, AccountItem>,
-}
-
-#[derive(Debug, Serialize, Deserialize)]
-#[serde(rename_all = "PascalCase")]
-pub struct AccountItem {
- pub has_private_key: bool,
-}