add AddChat on /start

This commit is contained in:
Владимир Фёдоров 2022-04-25 02:39:48 +07:00
parent 65e5144ad1
commit 41faa8ede8
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,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, "Здравствуйте, я Волтер (v1.0.1), ваш дворецкий.")) _, _ = bot.Send(tgbot.NewMessage(chatID, fmt.Sprintf("Здравствуйте, я Волтер (v1.0.2), ваш дворецкий (%d).", chatID)))
_ = db.AddChat(chatID) _ = db.AddChat(chatID)
case commands.Help: case commands.Help:
_, _ = bot.Send(tgbot.NewMessage(chatID, "Вот что я умею:\n\n1) Позвать всех")) _, _ = bot.Send(tgbot.NewMessage(chatID, "Вот что я умею:\n\n1) Позвать всех"))