mirror of
https://gitlab.com/pulsechaincom/lighthouse-pulse.git
synced 2025-01-07 11:32:21 +00:00
10 lines
145 B
Rust
10 lines
145 B
Rust
use network;
|
|
|
|
use error_chain::error_chain;
|
|
|
|
error_chain! {
|
|
links {
|
|
Network(network::error::Error, network::error::ErrorKind);
|
|
}
|
|
}
|