From d5faa10c7680877e201c79608c141c1a60535d0b Mon Sep 17 00:00:00 2001 From: Fusee Date: Sun, 12 Nov 2023 16:20:36 +0100 Subject: [PATCH] Re-exported the novax_data crate in the core crate --- core/src/lib.rs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/core/src/lib.rs b/core/src/lib.rs index 1d17df4..3329f82 100644 --- a/core/src/lib.rs +++ b/core/src/lib.rs @@ -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::*; } \ No newline at end of file