Make debug slightly cooler

This commit is contained in:
2025-05-29 01:53:46 +02:00
parent 38a318f694
commit 279a94c754
3 changed files with 28 additions and 7 deletions

View File

@ -2,6 +2,7 @@ package commands
import (
"log"
tgbotapi "github.com/go-telegram-bot-api/telegram-bot-api/v5"
)
@ -16,7 +17,7 @@ func (i InfoCommand) Help() string {
}
func (i InfoCommand) Execute(update tgbotapi.Update, bot *tgbotapi.BotAPI) {
msg := tgbotapi.NewMessage(update.Message.Chat.ID, "This bot does XYZ.")
msg := tgbotapi.NewMessage(update.Message.Chat.ID, "This bot does dumb stuff and chemistry. Now version 2.0, rewritten in Go.")
_, err := bot.Send(msg)
if err != nil {
log.Println("Failed to send info message:", err)