From dd1bce8f03f0327921c3a7fa1f45bb8e9e1915b0 Mon Sep 17 00:00:00 2001 From: Matt Silverlock Date: Thu, 2 Jun 2016 09:54:30 -0700 Subject: [PATCH] [deps] Move from errors -> github.com/pkg/errors --- csrf.go | 3 ++- store_test.go | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/csrf.go b/csrf.go index 60e1878..2994054 100644 --- a/csrf.go +++ b/csrf.go @@ -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" ) diff --git a/store_test.go b/store_test.go index 4345990..e1c5e6b 100644 --- a/store_test.go +++ b/store_test.go @@ -1,12 +1,13 @@ package csrf import ( - "errors" "fmt" "net/http" "net/http/httptest" "testing" + "github.com/pkg/errors" + "github.com/gorilla/securecookie" )