nostr-rs-relay/src/error.rs

10 lines
158 B
Rust
Raw Normal View History

//! Error handling.
use std::result;
use thiserror::Error;
pub type Result<T, E = Error> = result::Result<T, E>;
#[derive(Error, Debug)]
pub enum Error {}