#telegram-bot #context #api #updater #ext #type

rust_telegram_bot

TelegramBot API实现

1 个不稳定版本

0.0.1 2023年9月20日

#31#updater

MIT 许可证

11KB
142 代码行

Telegram Bot

Rust版的TelegramBot API实现

使用示例

use rust_telegram_bot::ext::{
    updater::Updater,
    context::Context
};
use rust_telegram_bot::telegram::types::Update;


fn echo(update: &Update, context: &Context) {
    let user_id = update.get_effective_user().id;
    let text = &update.message.text;
    let _ = context.bot.send_message(user_id as i32, text);
}


fn main() {
    let mut updater = Updater::new(String::from("YOUR TOKEN"));
    updater.register_handler(echo);
    updater.start_polling().expect("Something went wrong");
}

依赖项

~4–15MB
~219K SLoC