c284b1e8b1
* Create authenticator v5 request/response types * Support v5 in the authenticator * Fix tests * Bump nym-node version
11 lines
222 B
Rust
11 lines
222 B
Rust
// Copyright 2024 - Nym Technologies SA <contact@nymtech.net>
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
pub mod conversion;
|
|
pub mod registration;
|
|
pub mod request;
|
|
pub mod response;
|
|
pub mod topup;
|
|
|
|
pub const VERSION: u8 = 5;
|