morethantext-web/src/lib.rs

9 lines
108 B
Rust

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