This commit is contained in:
shoopea 2019-12-12 11:21:44 +08:00
parent d2f020b450
commit 73153cf725

2
td.go
View File

@ -77,7 +77,7 @@ func ListenTG(c *tdlib.Client) {
rm := updateMsg.Message.ReplyMarkup.(*tdlib.ReplyMarkupInlineKeyboard)
for k1, v1 := range rm.Rows {
for k2, v2 := range v1 {
fmt.Println("ReplyMarkupInlineKeyboard[%s][%s][%s] : ", k1, k2, v2.Text)
fmt.Printf("ReplyMarkupInlineKeyboard[%s][%s][%s] : \n", k1, k2, v2.Text)
}
}
}