morethantext-web/src/morethantext/session.rs

18 lines
196 B
Rust

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