bd94dd3055
* Store wireguard peers in db * Add update to nym-node * Move gateway-requests and gateway-storage to common * Carry storage to PeerController field * Double kernel modifications with storage ones * Take storage peers at boot * Link storage query for registration flow * Move authenticator peer comms in peer manager * Modify template too * Remove unused * Fix clippy * Fix clippy non-linux * Keep storage data up-to-date on every check * Check for staleness in storage timestamps * Remove potential for panic in unwrap * Fix clippy * Fmt * Clippy after rebase * Remove in memory test structure
13 lines
300 B
Rust
13 lines
300 B
Rust
// Copyright 2024 - Nym Technologies SA <contact@nymtech.net>
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
pub use authenticator::{Authenticator, OnStartData};
|
|
pub use config::Config;
|
|
|
|
pub mod authenticator;
|
|
pub mod config;
|
|
pub mod error;
|
|
pub mod mixnet_client;
|
|
pub mod mixnet_listener;
|
|
mod peer_manager;
|