724420f97c
* removed unused bits of authenticator config * moved authenticator into gateway * cleaned up imports * clippy
15 lines
354 B
Rust
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;
|