This is a module for getting input from the user end-point.
```rust use inputopr::getstring;
fn functionname() { let name = getstring::get_input("What is your name? "); println!("Hello {}", name); } ```