diff --git a/echo.go b/echo.go index 12de3ad70..bec45b38a 100644 --- a/echo.go +++ b/echo.go @@ -8,8 +8,8 @@ Example: import ( "net/http" - echo "gopkg.in/labstack/echo.v1" - mw "gopkg.in/labstack/echo.v1/middleware" + echo "github.com/matcherino/echo" + mw "github.com/matcherino/echo/middleware" ) func hello(c *echo.Context) error { diff --git a/middleware/auth.go b/middleware/auth.go index c1488178a..eb4940a82 100644 --- a/middleware/auth.go +++ b/middleware/auth.go @@ -4,7 +4,7 @@ import ( "encoding/base64" "net/http" - echo "gopkg.in/labstack/echo.v1" + echo "github.com/matcherino/echo" ) type ( diff --git a/middleware/auth_test.go b/middleware/auth_test.go index 42e3c9d10..448a77978 100644 --- a/middleware/auth_test.go +++ b/middleware/auth_test.go @@ -7,7 +7,7 @@ import ( "testing" "github.com/stretchr/testify/assert" - echo "gopkg.in/labstack/echo.v1" + echo "github.com/matcherino/echo" ) func TestBasicAuth(t *testing.T) { diff --git a/middleware/compress.go b/middleware/compress.go index 302229644..b1398dbff 100644 --- a/middleware/compress.go +++ b/middleware/compress.go @@ -10,7 +10,7 @@ import ( "strings" "sync" - echo "gopkg.in/labstack/echo.v1" + echo "github.com/matcherino/echo" ) type ( diff --git a/middleware/compress_test.go b/middleware/compress_test.go index af468612b..e34615388 100644 --- a/middleware/compress_test.go +++ b/middleware/compress_test.go @@ -9,7 +9,7 @@ import ( "time" "github.com/stretchr/testify/assert" - echo "gopkg.in/labstack/echo.v1" + echo "github.com/matcherino/echo" ) type closeNotifyingRecorder struct { diff --git a/middleware/logger.go b/middleware/logger.go index 37193793c..373ad5209 100644 --- a/middleware/logger.go +++ b/middleware/logger.go @@ -5,7 +5,7 @@ import ( "time" "github.com/labstack/gommon/color" - echo "gopkg.in/labstack/echo.v1" + echo "github.com/matcherino/echo" ) const ( diff --git a/middleware/logger_test.go b/middleware/logger_test.go index 51dc85723..8677751ca 100644 --- a/middleware/logger_test.go +++ b/middleware/logger_test.go @@ -8,7 +8,7 @@ import ( "testing" "github.com/stretchr/testify/assert" - echo "gopkg.in/labstack/echo.v1" + echo "github.com/matcherino/echo" ) func TestLogger(t *testing.T) { diff --git a/middleware/recover.go b/middleware/recover.go index c6e18765d..dc2c44009 100644 --- a/middleware/recover.go +++ b/middleware/recover.go @@ -5,7 +5,7 @@ import ( "runtime" - echo "gopkg.in/labstack/echo.v1" + echo "github.com/matcherino/echo" ) // Recover returns a middleware which recovers from panics anywhere in the chain diff --git a/middleware/recover_test.go b/middleware/recover_test.go index 4f0de8fcd..db5a3cf13 100644 --- a/middleware/recover_test.go +++ b/middleware/recover_test.go @@ -6,7 +6,7 @@ import ( "testing" "github.com/stretchr/testify/assert" - echo "gopkg.in/labstack/echo.v1" + echo "github.com/matcherino/echo" ) func TestRecover(t *testing.T) {