//! Certificate **wire structs** shared across boatramp.
//!
//! Only the key-free [`CertStatus`] view (for the `cert status` endpoint) is a
//! pure serde wire type and lives here so the server, CLI, and web console
//! share one definition (wasm-clean). The cluster cert *store* — `StoredCert`,
//! `CertStore`/`KvCertStore`, and `ensure_cert` — depends on the KV backend and
//! stays in `boatramp-core::cert`.
use ;
/// A safe, key-free view of a stored cert (for the `cert status` endpoint):
/// which domain and when it expires, never the chain or private key.