vendor/github.com/McKael/madon/v2/emoji.go
changeset 265 05c40b36d3b2
parent 264 8f478162d991
child 266 80973a656b81
--- 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
-}