aboutsummaryrefslogtreecommitdiffstats
path: root/crates/atuin-kv/src/store/entry.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/atuin-kv/src/store/entry.rs')
-rw-r--r--crates/atuin-kv/src/store/entry.rs8
1 files changed, 0 insertions, 8 deletions
diff --git a/crates/atuin-kv/src/store/entry.rs b/crates/atuin-kv/src/store/entry.rs
deleted file mode 100644
index 1d6a1ef8..00000000
--- a/crates/atuin-kv/src/store/entry.rs
+++ /dev/null
@@ -1,8 +0,0 @@
-use typed_builder::TypedBuilder;
-
-#[derive(Debug, Clone, PartialEq, Eq, TypedBuilder)]
-pub struct KvEntry {
- pub namespace: String,
- pub key: String,
- pub value: String,
-}