Files
nym/gateway/src/lib.rs
T
Jędrzej Stuczyński 724420f97c chore: move authenticator into gateway crate (#5982)
* removed unused bits of authenticator config

* moved authenticator into gateway

* cleaned up imports

* clippy
2025-08-27 09:05:02 +01:00

15 lines
354 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 node;
pub use error::GatewayError;
pub use node::GatewayTasksBuilder;
pub use node::internal_service_providers::authenticator as nym_authenticator;