First step in moving sessions into the database.

This commit is contained in:
2022-06-24 15:36:05 -04:00
parent ea0503defd
commit 4bd1a91704
4 changed files with 15 additions and 5 deletions

8
src/lib.rs Normal file
View File

@ -0,0 +1,8 @@
#[derive(Clone)]
pub struct Database {}
impl Database {
pub fn new() -> Self {
Self {}
}
}