Stubbed out database.

This commit is contained in:
2023-03-16 22:32:10 -04:00
parent e125d79a6c
commit 418ba26da9
3 changed files with 39 additions and 2 deletions

View File

@ -1,4 +1,5 @@
mod cache;
mod database;
pub mod error;
mod store;
@ -8,6 +9,7 @@ use async_std::{
sync::{Arc, Mutex},
task::{sleep, spawn},
};
use database::Database;
use error::{DBError, ErrorCode};
use rand::{distributions::Alphanumeric, thread_rng, Rng};
use std::{