Rust client package for Botway
toml
[dependencies]
botway-rs = "0.1"
after creating a new rust botway project, you need to use your tokens to connect with your bot.
```rust use futures::StreamExt; use telegram_bot::*;
use botway_rs::get;
async fn main() -> Result<(), Error> { let api = Api::new(get("token")); let mut stream = api.stream(); ... } ... ```