auths_transparency/error.rs
1//! The transparency-log error contract.
2//!
3//! The type itself lives in `auths_verifier::tlog` — the leaf verification
4//! crate every surface shares — so offline proof verification (native, FFI,
5//! browser WASM) and log construction/storage report through one error type.
6
7pub use auths_verifier::tlog::TransparencyError;
8
9/// Convenience alias for transparency operations.
10pub type Result<T> = std::result::Result<T, TransparencyError>;