mirror of
https://github.com/usememos/memos.git
synced 2024-11-17 04:07:30 +08:00
7 lines
134 B
Go
7 lines
134 B
Go
|
package telegram
|
||
|
|
||
|
type InlineKeyboardButton struct {
|
||
|
Text string `json:"text"`
|
||
|
CallbackData string `json:"callback_data"`
|
||
|
}
|