lite-rpc/blockstore/src/history.rs

16 lines
195 B
Rust

pub struct History {
// Placeholder
}
impl History {
pub fn new() -> Self {
History {}
}
}
impl Default for History {
fn default() -> Self {
Self::new()
}
}