summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/peterhellberg/giphy/search.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/peterhellberg/giphy/search.go')
-rw-r--r--vendor/github.com/peterhellberg/giphy/search.go24
1 files changed, 0 insertions, 24 deletions
diff --git a/vendor/github.com/peterhellberg/giphy/search.go b/vendor/github.com/peterhellberg/giphy/search.go
deleted file mode 100644
index ca5af117..00000000
--- a/vendor/github.com/peterhellberg/giphy/search.go
+++ /dev/null
@@ -1,24 +0,0 @@
-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
-}