Skip to content

Commit

Permalink
[deps] Move from errors -> github.com/pkg/errors
Browse files Browse the repository at this point in the history
  • Loading branch information
elithrar committed Jun 2, 2016
1 parent 50eb875 commit dd1bce8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion csrf.go
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
package csrf

import (
"errors"
"fmt"
"net/http"
"net/url"

"github.com/pkg/errors"

"github.com/gorilla/context"
"github.com/gorilla/securecookie"
)
Expand Down
3 changes: 2 additions & 1 deletion store_test.go
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
package csrf

import (
"errors"
"fmt"
"net/http"
"net/http/httptest"
"testing"

"github.com/pkg/errors"

"github.com/gorilla/securecookie"
)

Expand Down

0 comments on commit dd1bce8

Please sign in to comment.