Command and chat handler for rust
Add this to your cargo.toml file:
toml
bot-handler-manager = "0.1.2"
```rust // use use bothandlermanager;
fn main() { bothandlermanager::textspeechtext("hello!"); let mut commander = bothandlermanager::Commander::new("You~> "); commander.on("hi", "Hello there!"); // Loop and read loop { commander.read(); } }
```
Feel free to open issues and contribute!