A very simple way to make a clean, thread-safe, interactive CLI interface in rust.
Running example:
Creating a prompt is as simple as creating a vector of Command
structs with pointers to your functions and handing them off to command_loop
:
```rust
fn main(){
let commands = vec![
Command{
command: "converse",
func: converse, // <---- pointer to the converse function
help_output: "converse
// start the command loop with the provided commands
if let Err(e) = command_loop(&commands, None){
eprintln!("error running command loop: {}", e.to_string());
}
} ```
You can also create nested command_loops that maintain state via the context
argument, see the conversation example for more info.
Currently this does not support windows due to limitations with windows terminal. If someone asks for windows support i'll try and figure something out.