nym-gateway-requests 1.20.4

Request and response definitions for Nym Gateway <> client communication
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2020-2024 - Nym Technologies SA <contact@nymtech.net>
// SPDX-License-Identifier: Apache-2.0

pub mod binary_request;
pub mod binary_response;
pub mod error;
mod helpers;
pub mod registration_handshake_wrapper;
pub mod text_request;
pub mod text_response;

// just to preserve existing imports
pub use binary_request::*;
pub use binary_response::*;
pub use error::*;
pub use registration_handshake_wrapper::*;
pub use text_request::*;
pub use text_response::*;