update README.md

This commit is contained in:
Владимир Фёдоров 2022-04-03 19:00:28 +07:00
parent f7e4ef62b9
commit 0b83ac7b0f
3 changed files with 5 additions and 10 deletions

View File

@ -1,12 +1,7 @@
# all_tg_bot # all_tg_bot
Бот подменяет @all на список участников чата <p style="text-align:center">
<img style="width:300px" src="images/waiter.png" alt="Волтер">
</p>
Usage: Это Волтер, он реагирует на @all в сообщении чата и зовет всех.
main [OPTIONS]
Application Options:
-t, --token= Telegram api token
Help Options:
-h, --help Show this help message

BIN
images/waiter.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

View File

@ -87,7 +87,7 @@ func run() {
command := commands.Command(strings.Replace(text, opts.Name, "", 1)) command := commands.Command(strings.Replace(text, opts.Name, "", 1))
switch command { switch command {
case commands.Start: case commands.Start:
_, _ = bot.Send(tgbot.NewMessage(chatID, "Здравствуйте, я ваш дворецкий.")) _, _ = bot.Send(tgbot.NewMessage(chatID, "Здравствуйте, я Волтер, ваш дворецкий."))
case commands.Help: case commands.Help:
_, _ = bot.Send(tgbot.NewMessage(chatID, "Вот что я умею:\n\n1) Позвать всех")) _, _ = bot.Send(tgbot.NewMessage(chatID, "Вот что я умею:\n\n1) Позвать всех"))
case commands.Ping: case commands.Ping: