update README.md
This commit is contained in:
parent
f7e4ef62b9
commit
0b83ac7b0f
13
README.md
13
README.md
|
@ -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
|
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 31 KiB |
2
main.go
2
main.go
|
@ -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:
|
||||||
|
|
Loading…
Reference in New Issue