brought in wg routes into nym-node router

This commit is contained in:
Jędrzej Stuczyński
2023-10-11 15:26:08 +01:00
parent 89cddc62cc
commit 3260ba84fe
32 changed files with 1029 additions and 455 deletions
+7
View File
@@ -1,6 +1,7 @@
// Copyright 2023 - Nym Technologies SA <contact@nymtech.net>
// SPDX-License-Identifier: Apache-2.0
use crate::wireguard::error::WireguardError;
use std::net::SocketAddr;
use thiserror::Error;
@@ -18,6 +19,12 @@ pub enum NymNodeError {
source: nym_node_requests::error::Error,
},
#[error(transparent)]
WireguardError {
#[from]
source: WireguardError,
},
#[error("unimplemented")]
Unimplemented,
}