Skip to content

Commit

Permalink
Merge pull request #29
Browse files Browse the repository at this point in the history
Re-exported the novax_data crate in the core crate
  • Loading branch information
gfusee authored Nov 12, 2023
2 parents 13118ca + d5faa10 commit 3cbafec
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,4 +77,13 @@ pub use multiversx_sc::types::CodeMetadata;
/// functionalities for executing transactions and queries against the blockchain.
pub mod executor {
pub use novax_executor::*;
}

/// The `data` module provides re-exports of functionalities from the `novax_data` crate.
///
/// This module acts as an interface to the `novax_data` crate, facilitating access to its
/// provided features for handling data structures, storage mechanisms, and other data-related
/// operations used within the blockchain context.
pub mod data {
pub use novax_data::*;
}

0 comments on commit 3cbafec

Please sign in to comment.