RustInput/
lib.rs

1// Make the module public
2pub mod input;
3
4// Re-export Input struct and helper function
5pub use input::Input;
6pub use input::input;