Files
nym/common/wireguard/src/error.rs
T
2023-09-13 08:19:52 +02:00

8 lines
128 B
Rust

use thiserror::Error;
#[derive(Error, Debug)]
pub enum WgError {
#[error("unable to get tunnel")]
UnableToGetTunnel,
}