mirror of
https://github.com/scsibug/nostr-rs-relay.git
synced 2024-11-15 07:29:07 -05:00
10 lines
158 B
Rust
10 lines
158 B
Rust
|
//! Error handling.
|
||
|
|
||
|
use std::result;
|
||
|
use thiserror::Error;
|
||
|
|
||
|
pub type Result<T, E = Error> = result::Result<T, E>;
|
||
|
|
||
|
#[derive(Error, Debug)]
|
||
|
pub enum Error {}
|