From 50aa21b2f03f1cb6ce6ecfa3319b56243a1b7826 Mon Sep 17 00:00:00 2001 From: William Casarin Date: Wed, 13 Mar 2024 13:23:13 +0000 Subject: [PATCH] app: make ndb public We will be using this in some submodules, so expose it for now --- src/app.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.rs b/src/app.rs index da8dc431..69c7c886 100644 --- a/src/app.rs +++ b/src/app.rs @@ -94,7 +94,7 @@ pub struct Damus { timelines: Vec, img_cache: ImageCache, - ndb: Ndb, + pub ndb: Ndb, frame_history: crate::frame_history::FrameHistory, }