diff options
| author | Mason Reed <mason@vector35.com> | 2025-06-10 18:39:09 -0400 |
|---|---|---|
| committer | Mason Reed <mason@vector35.com> | 2025-07-02 01:56:53 -0400 |
| commit | 5bb44f2d127273980a0602c657fe47abb56ff039 (patch) | |
| tree | 54735c7363b12a85986459df666d0ca704da61f8 /rust/src/interaction.rs | |
| parent | 8557a5e88a42b15970baa57c6cf2b56d068a4314 (diff) | |
[Rust] Re-export interaction sub modules for convenience
Diffstat (limited to 'rust/src/interaction.rs')
| -rw-r--r-- | rust/src/interaction.rs | 5 |
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; |
