make TimelineCache::timelines private

Signed-off-by: kernelkind <kernelkind@gmail.com>
This commit is contained in:
kernelkind
2025-07-15 16:14:03 -04:00
parent dc4e3d7510
commit cc92fc2082
8 changed files with 14 additions and 21 deletions

View File

@@ -13,7 +13,7 @@ use tracing::{debug, error, info, warn};
#[derive(Default)]
pub struct TimelineCache {
pub timelines: HashMap<TimelineKind, Timeline>,
timelines: HashMap<TimelineKind, Timeline>,
}
pub enum Vitality<'a, M> {