Skip to content

Commit

Permalink
Add missing imports for http
Browse files Browse the repository at this point in the history
  • Loading branch information
felixLam committed Jun 24, 2016
1 parent c89d321 commit 772461b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion providers/twitter/twitter.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,12 @@ import (
"bytes"
"encoding/json"
"errors"
"io/ioutil"
"net/http"

"github.com/markbates/goth"
"github.com/mrjones/oauth"
"golang.org/x/oauth2"
"io/ioutil"
)

var (
Expand Down
4 changes: 3 additions & 1 deletion providers/yammer/yammer.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ package yammer

import (
"errors"
"net/http"
"strconv"

"github.com/markbates/goth"
"golang.org/x/oauth2"
"strconv"
)

const (
Expand Down

0 comments on commit 772461b

Please sign in to comment.