From 5bb44f2d127273980a0602c657fe47abb56ff039 Mon Sep 17 00:00:00 2001 From: Mason Reed Date: Tue, 10 Jun 2025 18:39:09 -0400 Subject: [Rust] Re-export interaction sub modules for convenience --- rust/src/interaction.rs | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'rust/src') 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; -- cgit v1.3.1