//! Session-based database storage
//!
//! This module provides database storage for one-time/session use cases,
//! such as storing BGP search results during a search operation.
//!
//! Unlike the shared database, session databases are typically:
//! - Created per-operation (e.g., per search)
//! - Stored in user-specified locations
//! - Not shared across monocle instances
//!
//! # Feature Requirements
//!
//! The `MsgStore` type requires the `lib` feature because it depends
//! on `bgpkit_parser::BgpElem` for storing BGP elements.
pub use MsgStore;