Skip to content

Commit

Permalink
Merge pull request #4 from utilitywarehouse/update-paths
Browse files Browse the repository at this point in the history
Update import paths
  • Loading branch information
basia-horwath authored May 12, 2022
2 parents 7e61db3 + 897418a commit 8503b22
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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() {
Expand Down
3 changes: 2 additions & 1 deletion castle_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 8503b22

Please sign in to comment.