From 4ba28121ac0665f268876d6bbf15f1b4dfcbc011 Mon Sep 17 00:00:00 2001 From: Ratan Kaliani Date: Fri, 6 Sep 2024 13:49:53 -0700 Subject: [PATCH] feat: expose store (#513) --- bin/host/src/kv/mem.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/host/src/kv/mem.rs b/bin/host/src/kv/mem.rs index 59542be11..7a1f45548 100644 --- a/bin/host/src/kv/mem.rs +++ b/bin/host/src/kv/mem.rs @@ -9,7 +9,8 @@ use std::collections::HashMap; /// development purposes. #[derive(Default, Clone, Debug, Eq, PartialEq)] pub struct MemoryKeyValueStore { - store: HashMap>, + /// The underlying store. + pub store: HashMap>, } impl MemoryKeyValueStore {