From a5095c1467ed5575f7bc34b291fba0a8982f404f Mon Sep 17 00:00:00 2001 From: "yuuji.yaginuma" Date: Sat, 10 Apr 2021 14:01:37 +0900 Subject: [PATCH] Use same to path and repository name Without this fix, `go install` fails as following. ```bash $ go install github.com/davecheney/httpstat@master go: downloading github.com/davecheney/httpstat v1.0.1-0.20201227061204-995a296aed9f go install github.com/davecheney/httpstat@master: github.com/davecheney/httpstat@none updating to github.com/davecheney/httpstat@v1.0.1-0.20201227061204-995a296aed9f: parsing go.mod: module declares its path as: github.com/httpstat but was required as: github.com/davecheney/httpstat ``` --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 46c9d24..b243603 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/httpstat +module github.com/davecheney/httpstat go 1.15