15 lines
319 B
Rust
15 lines
319 B
Rust
// Copyright 2024 - Nym Technologies SA <contact@nymtech.net>
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
#![warn(clippy::expect_used)]
|
|
#![warn(clippy::unwrap_used)]
|
|
|
|
pub mod config;
|
|
pub mod error;
|
|
pub mod helpers;
|
|
pub(crate) mod http;
|
|
pub mod node;
|
|
|
|
pub use error::GatewayError;
|
|
pub use node::{create_gateway, Gateway};
|