//! Sessions Core
/// Set if the session was unchanged or inited.
pub const UNCHANGED: u8 = 0;
/// Set if the session has been destroied.
pub const PURGED: u8 = 1;
/// Set if the session has been renewed.
pub const RENEWED: u8 = 2;
/// Set if the session has been changed.
pub const CHANGED: u8 = 3;
/// A data state
pub type Data = BTreeMap;
pub use State;
pub use Storage;
pub use Store;
pub use Value;
pub use Session;