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

@ -1,4 +1,5 @@
mod cache;
mod database;
mod error;
mod store;
@ -8,6 +9,7 @@ use async_std::{
task::spawn,
};
use cache::Cache;
use database::Database;
use error::{ErrorCode, MTTError};
use store::Store;