9 lines
108 B
Rust
Raw Normal View History

#[derive(Clone)]
pub struct Database {}
impl Database {
pub fn new() -> Self {
Self {}
}
}