From 5c9b3fa52cac69316969cabc4c380d90ab7e89a6 Mon Sep 17 00:00:00 2001 From: Eason Lin Date: Wed, 28 Jun 2017 00:18:33 +0800 Subject: [PATCH] =?UTF-8?q?Unify=20=E2=80=98github.com=E2=80=99=20wording?= =?UTF-8?q?=20with=20code.=20(#26)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5a8ac70..5153bb6 100644 --- a/README.md +++ b/README.md @@ -15,13 +15,13 @@ Gin middleware/handler to enable CORS support. Download and install it: ```sh -$ go get gopkg.in/gin-contrib/cors.v1 +$ go get github.com/gin-contrib/cors ``` Import it in your code: ```go -import "gopkg.in/gin-contrib/cors.v1" +import "github.com/gin-contrib/cors" ``` ### Canonical example: @@ -32,7 +32,7 @@ package main import ( "time" - "gopkg.in/gin-contrib/cors.v1" + "github.com/gin-contrib/cors" "github.com/gin-gonic/gin" )