setMyCommands implemented
parent
b263943220
commit
4a2c8c4547
15
bot.go
15
bot.go
|
@ -1036,3 +1036,18 @@ func (bot *BotAPI) GetStickerSet(config GetStickerSetConfig) (StickerSet, error)
|
||||||
}
|
}
|
||||||
return stickerSet, nil
|
return stickerSet, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// SetMyCommands changes the list of the bot's commands.
|
||||||
|
func (bot *BotAPI) SetMyCommands(commands []BotCommand) error {
|
||||||
|
v := url.Values{}
|
||||||
|
data, err := json.Marshal(commands)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
v.Add("commands", string(data))
|
||||||
|
_, err = bot.MakeRequest("setMyCommands", v)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
6
types.go
6
types.go
|
@ -1005,3 +1005,9 @@ type Error struct {
|
||||||
func (e Error) Error() string {
|
func (e Error) Error() string {
|
||||||
return e.Message
|
return e.Message
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// BotCommand represents a bot command.
|
||||||
|
type BotCommand struct {
|
||||||
|
Command string `json:"command"`
|
||||||
|
Description string `json:"description"`
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue