Setup store to hold databases.

This commit is contained in:
2023-06-22 11:08:40 -04:00
parent c8b93d9922
commit a23b5d467e
3 changed files with 29 additions and 2 deletions

View 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();
}
}