1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
#![warn(missing_docs)]
//! A session handler for carapax

mod gc;
mod handler;
mod session;

pub use self::{
    gc::{spawn_gc, GarbageCollector},
    handler::SessionHandler,
    session::{Session, SessionKey, SessionLifetime},
};

/// Contains session store implementations
pub mod store;