morethantext-web/src/morethantext/session.rs

18 lines
196 B
Rust
Raw Normal View History

2023-03-24 08:00:48 -04:00
pub struct Session;
impl Session {
pub fn new() -> Self {
Self {}
}
}
#[cfg(test)]
mod session {
use super::*;
#[test]
fn create() {
Session::new();
}
}