1 2 3 4 5 6 7 8
use crate::{repository::LogEntry, snapshot::Snapshot}; #[derive(Default)] pub struct History {} impl History { pub fn handle_log_entry(&mut self, snapshot: &Snapshot, log: &LogEntry) {} }