aboutsummaryrefslogtreecommitdiffstats
path: root/src/db.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2020-04-18 04:24:26 -0400
committerJesse Luehrs <doy@tozt.net>2020-04-18 04:30:04 -0400
commit3765d4f2edc5933f61fd46ab130e366774556cf5 (patch)
tree930ce485993d46dd1e13f00fae00930521c0ef39 /src/db.rs
parentb3c69bf88d973af04433d450a659ef1581d813e2 (diff)
downloadrbw-3765d4f2edc5933f61fd46ab130e366774556cf5.tar.gz
rbw-3765d4f2edc5933f61fd46ab130e366774556cf5.zip
implement remove
Diffstat (limited to 'src/db.rs')
-rw-r--r--src/db.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/db.rs b/src/db.rs
index 6e73852..4ac6e9c 100644
--- a/src/db.rs
+++ b/src/db.rs
@@ -5,6 +5,7 @@ use tokio::io::{AsyncReadExt as _, AsyncWriteExt as _};
#[derive(serde::Serialize, serde::Deserialize, Debug, Clone)]
pub struct Entry {
+ pub id: String,
pub name: String,
pub username: Option<String>,
pub password: Option<String>,