teloxide/examples
2022-01-06 13:59:50 +02:00
..
admin_bot Don't define async fn run() 2021-12-27 21:13:46 +06:00
dialogue_bot remove #[out()] attribute 2021-12-29 14:21:37 +02:00
dices_bot update dices_bot example 2022-01-05 20:23:20 +02:00
heroku_ping_pong_bot update heroku_ping_pong example 2022-01-05 20:20:02 +02:00
inline_bot update inline_bot example 2022-01-06 13:30:27 +02:00
ngrok_ping_pong_bot update ngrok_bot example 2022-01-06 13:34:38 +02:00
redis_remember_bot update redis_remember_bot example 2022-01-06 13:59:40 +02:00
shared_state_bot update shared_state_bot example 2022-01-06 13:59:50 +02:00
simple_commands_bot Don't define async fn run() 2021-12-27 21:13:46 +06:00
sqlite_remember_bot added handler_ext.rs, updated dptree version 2021-12-26 16:55:24 +02:00
README.md Update examples/README.md 2020-08-01 15:16:28 +06:00
test_examples.sh parallelize test examples 2020-07-03 16:52:36 +03:00

Examples

Just enter the directory (for example, cd dialogue_bot) and execute cargo run to run an example. Don't forget to initialise the TELOXIDE_TOKEN environmental variable.

Bot Description
dices_bot Throws a dice on each incoming message.
ngrok_ping_pong_bot The ngrok version of ping-pong-bot that uses webhooks.
heroku_ping_pong_bot The Heroku version of ping-pong-bot that uses webhooks.
simple_commands_bot Shows how to deal with bot's commands.
redis_remember_bot Uses RedisStorage instead of InMemStorage.
dialogue_bot How to deal with dialogues.
admin_bot Ban, kick, and mute on a command.
shared_state_bot How to deal with shared state.