Setup initial db session.
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user