1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! A session library
#![cfg_attr(nightly, feature(doc_cfg))]
#![warn(missing_docs)]

pub use self::{
    collector::{SessionCollector, SessionCollectorHandle},
    manager::SessionManager,
    session::{Session, SessionError},
};

mod collector;
mod manager;
mod session;
mod utils;
mod value;

/// Store backend implementations
pub mod backend;