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.

17 lines
436 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
ShouldUnsubscribe bool
1 year ago
Injected struct {
ChatId int64
MessageId int
}
}