mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-10 04:01:51 +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);
|
|
}
|
|
}
|