Setup store to hold databases.
This commit is contained in:
18
src/morethantext/database.rs
Normal file
18
src/morethantext/database.rs
Normal file
@@ -0,0 +1,18 @@
|
||||
#[derive(Clone, Debug)]
|
||||
pub struct Database;
|
||||
|
||||
impl Database {
|
||||
fn new() -> Self {
|
||||
Self {}
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod dbase {
|
||||
use super::*;
|
||||
|
||||
#[test]
|
||||
fn create_new() {
|
||||
Database::new();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user