dkernel 0.0.0

The application platform for your cyberpunk desk
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) {}
}