1
0
forked from lug/matterbridge

Vendor libs

This commit is contained in:
Wim
2016-04-10 23:39:38 +02:00
parent 6b18257185
commit de4c780410
198 changed files with 34235 additions and 0 deletions

24
vendor/github.com/peterhellberg/giphy/search.go generated vendored Normal file
View File

@@ -0,0 +1,24 @@
package giphy
import (
"fmt"
"strings"
)
// Search returns a search response from the Giphy API
func (c *Client) Search(args []string) (Search, error) {
argsStr := strings.Join(args, " ")
path := fmt.Sprintf("/gifs/search?limit=%v&q=%s", c.Limit, argsStr)
req, err := c.NewRequest(path)
if err != nil {
return Search{}, err
}
var search Search
if _, err = c.Do(req, &search); err != nil {
return Search{}, err
}
return search, nil
}