You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
406 B

1 year ago
package handlers
import "github.com/go-telegram/bot"
type HandlerResponse struct {
Message *bot.SendMessageParams
ProgressMessageToEditId int
CallbackAnswer *bot.AnswerCallbackQueryParams
MessageEdits []*bot.EditMessageTextParams
MessageMarkupEdits []*bot.EditMessageReplyMarkupParams
Injected struct {
ChatId int64
MessageId int
}
}