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
436 B
16 lines
436 B
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 |
|
Injected struct { |
|
ChatId int64 |
|
MessageId int |
|
} |
|
}
|
|
|