mirror of
https://github.com/usememos/memos.git
synced 2024-12-20 17:51:50 +03:00
4d59689126
* Add telegram.Bot in MessageHandler * Change single message handler like group messages * Move message notify wrapper from plugin to server * Add keyboard buttons on Telegram reply message * Add support to telegram CallbackQuery update * Set visibility in callbackQuery * Change original reply message after callbackQuery --------- Co-authored-by: Athurg Feng <athurg@gooth.org>
12 lines
362 B
Go
12 lines
362 B
Go
package telegram
|
|
|
|
type CallbackQuery struct {
|
|
ID string `json:"id"`
|
|
From User `json:"from"`
|
|
Message *Message `json:"message"`
|
|
InlineMessageID string `json:"inline_message_id"`
|
|
ChatInstance string `json:"chat_instance"`
|
|
Data string `json:"data"`
|
|
GameShortName string `json:"game_short_name"`
|
|
}
|