summaryrefslogtreecommitdiff
path: root/rust/src
diff options
context:
space:
mode:
authorMason Reed <mason@vector35.com>2025-06-10 18:39:09 -0400
committerMason Reed <mason@vector35.com>2025-07-02 01:56:53 -0400
commit5bb44f2d127273980a0602c657fe47abb56ff039 (patch)
tree54735c7363b12a85986459df666d0ca704da61f8 /rust/src
parent8557a5e88a42b15970baa57c6cf2b56d068a4314 (diff)
[Rust] Re-export interaction sub modules for convenience
Diffstat (limited to 'rust/src')
-rw-r--r--rust/src/interaction.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/rust/src/interaction.rs b/rust/src/interaction.rs
index 1a3ef2aa..bf709f2c 100644
--- a/rust/src/interaction.rs
+++ b/rust/src/interaction.rs
@@ -25,6 +25,11 @@ pub mod form;
pub mod handler;
pub mod report;
+// Re-export the public items from the submodules, for convenience.
+pub use report::*;
+pub use form::*;
+pub use handler::*;
+
pub type MessageBoxButtonSet = BNMessageBoxButtonSet;
pub type MessageBoxIcon = BNMessageBoxIcon;
pub type MessageBoxButtonResult = BNMessageBoxButtonResult;