mirror of
https://github.com/dancojocaru2000/CfrTrainInfoTelegramBot.git
synced 2025-02-23 01:29:40 +02:00
16 lines
436 B
Go
16 lines
436 B
Go
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
|
|
}
|
|
}
|