9 lines
108 B
Rust
9 lines
108 B
Rust
|
#[derive(Clone)]
|
||
|
pub struct Database {}
|
||
|
|
||
|
impl Database {
|
||
|
pub fn new() -> Self {
|
||
|
Self {}
|
||
|
}
|
||
|
}
|