//! The partition journal on the wire.
//!
//! [`wire`] maps the journal contract's vocabulary onto its encoding and back,
//! [`client`] dials the surface in the kernel's vocabulary, and [`service`]
//! serves it by delegating to a [`PartitionJournal`] module. Nothing here
//! decides anything: the module owns every State decision, and the admission
//! functions own everything the transport boundary decides.
//!
//! [`verify`] adds the one operation that is not a port operation: a verified
//! replay reads the storage host's own durable floor, which no adapter-neutral
//! contract could expose, so its semantics live at the service instead.
//!
//! [`PartitionJournal`]: polyc_state::journal::PartitionJournal
pub use JournalClient;
pub use JournalSvc;
pub use ;