Giacomo Pasini 221d7102a9
init
2024-07-16 17:06:54 +02:00

10 lines
208 B
Rust

use thiserror::Error;
pub type Result<T> = core::result::Result<T, Error>;
#[derive(Error, Debug)]
pub enum Error {
#[error("risc0 failed to serde")]
Risc0Serde(#[from] risc0_zkvm::serde::Error),
}