identity_iota_core/rebased/mod.rs
1// Copyright 2020-2024 IOTA Stiftung
2// SPDX-License-Identifier: Apache-2.0
3
4/// Module for handling assets.
5pub mod assets;
6/// Module for handling client operations.
7pub mod client;
8mod error;
9mod iota;
10/// Module for handling migration operations.
11pub mod migration;
12/// Contains the operations of proposals.
13pub mod proposals;
14/// Contains utility functions.
15#[cfg(not(target_arch = "wasm32"))]
16pub mod utils;
17
18pub use assets::*;
19pub use error::*;
20
21/// Integration with IOTA's Keytool.
22#[cfg(feature = "keytool")]
23pub use iota_interaction::keytool;