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