mirror of
https://github.com/teloxide/teloxide.git
synced 2024-12-22 14:35:36 +01:00
🤖 An elegant Telegram bots framework for Rust
https://docs.rs/teloxide
8d4731d6d6
It means 'Telegram Bot For Rust' |
||
---|---|---|
src | ||
.gitignore | ||
.travis.yml | ||
Cargo.toml | ||
ICON.png | ||
LICENSE | ||
README.md | ||
rustfmt.toml |
telebofr
A full-featured framework that empowers you to easily build Telegram bots using the async
/.await
syntax in Rust. It handles all the difficult stuff so you can focus only on your business logic.
A simple bot
fn main() {
let bot = Bot::new(API_TOKEN).bla().bla();
}