From 42f59eff1d9fb4816fa7cfa1f00b763e6dc6339a Mon Sep 17 00:00:00 2001 From: Marvin Steadfast Date: Mon, 18 Jan 2021 11:02:17 +0100 Subject: [PATCH] vanity go module url --- README.md | 2 +- go.mod | 2 +- logginghandler_test.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2c21ad8..1a260c3 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ Just a simple zerolog based request logging http middleware. It also sets a `X-R ## Install - go get -v git.xsfx.dev/xsteadfastx/logginghandler + go get -v go.xsfx.dev/logginghandler ## Usage diff --git a/go.mod b/go.mod index 3442bdb..91e222e 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module git.xsfx.dev/xsteadfastx/logginghandler +module go.xsfx.dev/logginghandler go 1.15 diff --git a/logginghandler_test.go b/logginghandler_test.go index fc0085e..1b78964 100644 --- a/logginghandler_test.go +++ b/logginghandler_test.go @@ -7,8 +7,8 @@ import ( "net/http/httptest" "testing" - "git.xsfx.dev/xsteadfastx/logginghandler" "github.com/stretchr/testify/assert" + "go.xsfx.dev/logginghandler" ) func testHandler(w http.ResponseWriter, r *http.Request) {