dure 0.2.4

Detachable Windows console sessions that outlive the terminal
//! Session store PAL.

mod abstractions;
mod facade;
mod fs_store;
// A fake used only to drive unit tests, so it is test infrastructure rather
// than product code and carries no coverage expectations of its own.
#[cfg_attr(coverage_nightly, coverage(off))]
#[cfg(test)]
mod memory;
// How a stored id encodes its state. A persistence detail of the store
// implementations, so it stays inside the slice that owns them.
mod stored;

pub(crate) use abstractions::*;
pub(crate) use facade::*;
pub(crate) use fs_store::*;
#[cfg(test)]
pub(crate) use memory::*;