mirror of
https://github.com/usememos/memos.git
synced 2024-11-16 19:56:11 +08:00
9987337eca
Fix all ID from int to int64 to avoid 32bits machine break
7 lines
191 B
Go
7 lines
191 B
Go
package telegram
|
|
|
|
type Update struct {
|
|
UpdateID int64 `json:"update_id"`
|
|
Message *Message `json:"message"`
|
|
CallbackQuery *CallbackQuery `json:"callback_query"`
|
|
}
|