Skip to content

Commit 3b10c89

Browse files
committed
Change module name to use Zattix
1 parent 72592b1 commit 3b10c89

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This module lets you authenticate HTTP requests using JWT tokens in your Go Prog
1212
## Installing
1313

1414
````bash
15-
go get github.com/auth0/go-jwt-middleware
15+
go get github.com/Zattix/go-jwt-middleware
1616
````
1717

1818
## Using it
@@ -27,7 +27,7 @@ import (
2727
"fmt"
2828
"net/http"
2929

30-
"github.com/auth0/go-jwt-middleware"
30+
"github.com/Zattix/go-jwt-middleware"
3131
"github.com/dgrijalva/jwt-go"
3232
"context"
3333
)
@@ -68,7 +68,7 @@ import (
6868
"fmt"
6969
"net/http"
7070

71-
"github.com/auth0/go-jwt-middleware"
71+
"github.com/Zattix/go-jwt-middleware"
7272
"github.com/urfave/negroni"
7373
"github.com/dgrijalva/jwt-go"
7474
"github.com/gorilla/mux"
@@ -118,7 +118,7 @@ type Options struct {
118118
// Default value: "user"
119119
UserProperty string
120120
// The function that will be called when there's an error validating the token
121-
// Default value: https://github.com/auth0/go-jwt-middleware/blob/master/jwtmiddleware.go#L35
121+
// Default value: https://github.com/Zattix/go-jwt-middleware/blob/master/jwtmiddleware.go#L35
122122
ErrorHandler errorHandler
123123
// A boolean indicating if the credentials are required or not
124124
// Default value: false
@@ -175,7 +175,7 @@ jwtmiddleware.New(jwtmiddleware.Options{
175175

176176
## Examples
177177

178-
You can check out working examples in the [examples folder](https://github.com/auth0/go-jwt-middleware/tree/master/examples)
178+
You can check out working examples in the [examples folder](https://github.com/Zattix/go-jwt-middleware/tree/master/examples)
179179

180180

181181
## What is Auth0?

examples/martini-example/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"encoding/json"
55
"net/http"
66

7-
jwtmiddleware "github.com/auth0/go-jwt-middleware"
7+
jwtmiddleware "github.com/Zattix/go-jwt-middleware"
88
"github.com/dgrijalva/jwt-go"
99
"github.com/go-martini/martini"
1010
)

examples/negroni-example/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"encoding/json"
55
"net/http"
66

7-
jwtmiddleware "github.com/auth0/go-jwt-middleware"
7+
jwtmiddleware "github.com/Zattix/go-jwt-middleware"
88
"github.com/dgrijalva/jwt-go"
99
"github.com/gorilla/mux"
1010
"github.com/urfave/negroni"

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/auth0/go-jwt-middleware
1+
module github.com/Zattix/go-jwt-middleware
22

33
go 1.14
44

0 commit comments

Comments
 (0)