From 897418a8c4b7c3a5c6aa09f5ff1720cd7974c777 Mon Sep 17 00:00:00 2001 From: Barbara Horwath Date: Thu, 12 May 2022 15:05:22 +0200 Subject: [PATCH] Update import paths --- .golangci.yml | 2 +- README.md | 7 ++++--- castle_test.go | 3 ++- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.golangci.yml b/.golangci.yml index f95b4b9..6dec022 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -73,7 +73,7 @@ issues: exclude-rules: - linters: - lll - source: "github.com/castle/castle-go" + source: "github.com/utilitywarehouse/castle-go" exclude: # errcheck: Almost all programs ignore errors on these functions and in most cases it's ok - Error return value of diff --git a/README.md b/README.md index b477389..81b58ca 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ castle-go is a Go library wrapping the https://castle.io API. ## Install ``` -go get github.com/castle/castle-go +go get github.com/utilitywarehouse/castle-go ``` ## Usage @@ -60,9 +60,10 @@ decision, err := castle.Authenticate( package main import ( - "net/http" "log" - "github.com/castle/castle-go/castle" + "net/http" + + "github.com/utilitywarehouse/castle-go" ) func main() { diff --git a/castle_test.go b/castle_test.go index 18f511a..dc85e15 100644 --- a/castle_test.go +++ b/castle_test.go @@ -6,9 +6,10 @@ import ( "net/http/httptest" "testing" - "github.com/castle/castle-go" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" + + "github.com/utilitywarehouse/castle-go" ) func configureRequest() *http.Request {