Rust client package for Botway
toml
[dependencies]
botway-rs = "0.2.11"
after creating a new rust botway project, you need to use your tokens to connect with your bot.
```rust use teloxide::{prelude::*, utils::command::BotCommands}; use std::error::Error; use botway_rs::get;
async fn main() { prettyenvlogger::init(); log::info!("Starting command bot...");
let bot = Bot::new(get("token"));
teloxide::commands_repl(bot, answer, Command::ty()).await;
} ... ```