From d77ca3f3c33aad7dd1e4ce18abd55e319203c9ea Mon Sep 17 00:00:00 2001 From: Kitsune TSUYUSATO Date: Mon, 26 Aug 2019 21:01:14 +0900 Subject: [PATCH] fix: import path --- README.md | 10 ++-------- go.mod | 2 +- 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index f1c1049..52c8ac5 100644 --- a/README.md +++ b/README.md @@ -8,16 +8,10 @@ Package heredoc provides the here-document with keeping indent. -## Install - -```console -$ go get github.com/MakeNowJust/heredoc -``` - ## Import ```go -import "github.com/MakeNowJust/heredoc" +import "github.com/MakeNowJust/heredoc/v2" ``` ## Example @@ -28,7 +22,7 @@ package main import ( "fmt" - "github.com/MakeNowJust/heredoc" + "github.com/MakeNowJust/heredoc/v2" ) func main() { diff --git a/go.mod b/go.mod index 52b0dfd..1203ec5 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module github.com/MakeNowJust/heredoc +module github.com/MakeNowJust/heredoc/v2 go 1.12