15 lines
424 B
Rust
15 lines
424 B
Rust
// Copyright 2024 - Nym Technologies SA <contact@nymtech.net>
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
#![warn(clippy::expect_used)]
|
|
#![warn(clippy::unwrap_used)]
|
|
|
|
pub mod error;
|
|
pub mod import_credential;
|
|
|
|
pub use error::NymIdError;
|
|
pub use import_credential::{
|
|
import_coin_index_signatures, import_expiration_date_signatures, import_full_ticketbook,
|
|
import_master_verification_key, import_standalone_ticketbook,
|
|
};
|