diff -r 8f478162d991 -r 05c40b36d3b2 vendor/github.com/McKael/madon/v2/emoji.go --- a/vendor/github.com/McKael/madon/v2/emoji.go Thu Sep 22 16:37:07 2022 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,20 +0,0 @@ -/* -Copyright 2018 Mikael Berthe - -Licensed under the MIT license. Please see the LICENSE file is this directory. -*/ - -package madon - -import ( - "github.com/sendgrid/rest" -) - -// GetCustomEmojis returns a list with the server custom emojis -func (mc *Client) GetCustomEmojis(lopt *LimitParams) ([]Emoji, error) { - var emojiList []Emoji - if err := mc.apiCall("v1/custom_emojis", rest.Get, nil, lopt, nil, &emojiList); err != nil { - return nil, err - } - return emojiList, nil -}