5个版本
0.2.11 | 2022年6月30日 |
---|---|
0.2.2 | 2022年9月17日 |
0.2.1 | 2022年6月30日 |
0.2.0 | 2022年5月7日 |
0.1.0 | 2022年5月4日 |
#52 in #bot-api
5KB
55 行
botway-rs
Botway的Rust客户端包
安装
[dependencies]
botway-rs = "0.2.11"
使用
在创建新的Rust botway项目后,您需要使用您的令牌来连接您的机器人。
use teloxide::{prelude::*, utils::command::BotCommands};
use std::error::Error;
use botway_rs::get;
#[tokio::main]
async fn main() {
pretty_env_logger::init();
log::info!("Starting command bot...");
let bot = Bot::new(get("token"));
teloxide::commands_repl(bot, answer, Command::ty()).await;
}
...
依赖项
~1.2–2MB
~36K SLoC