From 7d1ec4f2119934983b106718265783fc48a38b77 Mon Sep 17 00:00:00 2001 From: Bo-Yi Wu Date: Sun, 19 Mar 2017 15:00:17 +0800 Subject: [PATCH] revert to github.com Signed-off-by: Bo-Yi Wu --- README.md | 5 ++--- example/example.go | 3 +-- multitemplate_test.go | 2 +- 3 files changed, 4 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 7d58b22..2ef387a 100644 --- a/README.md +++ b/README.md @@ -32,8 +32,7 @@ package main import ( "github.com/gin-contrib/multitemplate" - - "gopkg.in/gin-gonic/gin.v1" + "github.com/gin-gonic/gin" ) func createMyRender() multitemplate.Render { @@ -73,7 +72,7 @@ import ( "path/filepath" "github.com/gin-contrib/multitemplate" - "gopkg.in/gin-gonic/gin.v1" + "github.com/gin-gonic/gin" ) func main() { diff --git a/example/example.go b/example/example.go index 32828a6..ad35703 100644 --- a/example/example.go +++ b/example/example.go @@ -2,8 +2,7 @@ package main import ( "github.com/gin-contrib/multitemplate" - - "gopkg.in/gin-gonic/gin.v1" + "github.com/gin-gonic/gin" ) func createMyRender() multitemplate.Render { diff --git a/multitemplate_test.go b/multitemplate_test.go index 95c295b..a9faf01 100644 --- a/multitemplate_test.go +++ b/multitemplate_test.go @@ -6,8 +6,8 @@ import ( "net/http/httptest" "testing" + "github.com/gin-gonic/gin" "github.com/stretchr/testify/assert" - "gopkg.in/gin-gonic/gin.v1" ) func performRequest(r http.Handler, method, path string) *httptest.ResponseRecorder {