favourites.go
author Mikael Berthe <mikael@lilotux.net>
Sat, 29 Apr 2017 10:51:45 +0200
changeset 154 eb83fd052cc5
parent 149 5f922977d7c7
child 155 0c581e0108da
permissions -rw-r--r--
Bump version number -- devel version

/*
Copyright 2017 Mikael Berthe

Licensed under the MIT license.  Please see the LICENSE file is this directory.
*/

package madon

import (
	"github.com/sendgrid/rest"
)

// GetFavourites returns the list of the user's favourites
func (mc *Client) GetFavourites(lopt *LimitParams) ([]Status, error) {
	var faves []Status
	err := mc.apiCall("favourites", rest.Get, nil, lopt, &faves)
	if err != nil {
		return nil, err
	}
	return faves, nil
}