
* Add support for editing/deleting messages * Add support for uploading files * Add support for avatars * Use the Rocket.Chat.Go.SDK * Use the rest and streaming api
11 lines
149 B
Go
11 lines
149 B
Go
package realtime
|
|
|
|
func (c *Client) getCustomEmoji() error {
|
|
_, err := c.ddp.Call("listEmojiCustom")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|