setup functions, plugin enabler, reply markup, example commands

This commit is contained in:
Syfaro 2015-06-25 16:15:28 -05:00
parent 567a37868d
commit 3940cb5953
6 changed files with 326 additions and 10 deletions

View file

@ -119,10 +119,10 @@ type UserProfilePhotos struct {
}
type ReplyKeyboardMarkup struct {
Keyboard map[string]map[string]string `json:"keyboard"`
ResizeKeyboard bool `json:"resize_keyboard"`
OneTimeKeyboard bool `json:"one_time_keyboard"`
Selective bool `json:"selective"`
Keyboard [][]string `json:"keyboard"`
ResizeKeyboard bool `json:"resize_keyboard"`
OneTimeKeyboard bool `json:"one_time_keyboard"`
Selective bool `json:"selective"`
}
type ReplyKeyboardHide struct {