//! Shared in-memory task and cancellation stores handed to every handler.
use crateTask;
use HashMap;
use Arc;
use RwLock;
use CancellationToken;
/// In-memory task store.
pub type TaskStore = ;
/// Cancellation token store — keyed by task ID.
pub type CancelStore = ;
/// Create a new empty task store.
/// Create a new empty cancel store.