Setup initial db session.

This commit is contained in:
2023-03-24 08:00:48 -04:00
parent 40aae3ef5a
commit c75bea3913
2 changed files with 39 additions and 5 deletions

View File

@@ -0,0 +1,17 @@
pub struct Session;
impl Session {
pub fn new() -> Self {
Self {}
}
}
#[cfg(test)]
mod session {
use super::*;
#[test]
fn create() {
Session::new();
}
}