mirror of
https://github.com/dancojocaru2000/CfrTrainInfoTelegramBot.git
synced 2025-02-23 17:49:40 +02:00
16 lines
406 B
Go
16 lines
406 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
|
||
|
Injected struct {
|
||
|
ChatId int64
|
||
|
MessageId int
|
||
|
}
|
||
|
}
|