teloxide/examples/README.md

13 lines
946 B
Markdown
Raw Normal View History

2020-02-13 14:57:47 +06:00
# Examples
2020-02-14 01:59:02 +06:00
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.
2020-02-19 05:13:47 +06:00
| Bot | Description |
2020-02-19 07:45:34 +06:00
|---|-----------|
2020-02-19 05:13:47 +06:00
| [ping_pong_bot](ping_pong_bot) | Answers "pong" to each incoming message. |
2020-06-01 13:05:52 +06:00
| [ngrok_ping_pong_bot](ngrok_ping_pong_bot) | The ngrok version of ping-pong-bot that uses webhooks. |
| [heroku_ping_pong_bot](heroku_ping_pong_bot) | The Heroku version of ping-pong-bot that uses webhooks. |
2020-02-19 05:13:47 +06:00
| [simple_commands_bot](simple_commands_bot) | Shows how to deal with bot's commands. |
| [guess_a_number_bot](guess_a_number_bot) | The "guess a number" game. |
| [dialogue_bot](dialogue_bot) | Drive a dialogue with a user using a type-safe finite automaton. |
| [admin_bot](admin_bot) | A bot, which can ban, kick, and mute on a command. |
2020-03-31 01:10:04 +06:00
| [shared_state_bot](shared_state_bot) | A bot that shows how to deal with shared state. |