18 lines
196 B
Rust
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();
|
|
}
|
|
}
|