Skip to content
This repository has been archived by the owner on May 24, 2023. It is now read-only.

Commit

Permalink
Update import paths for golang-jwt in README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Micah Parks committed May 13, 2023
1 parent 17f68b1 commit 4ae7395
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ This middleware supports Fiber v1 & v2, install accordingly.
```
go get -u github.com/gofiber/fiber/v2
go get -u github.com/gofiber/jwt/v4
go get -u github.com/golang-jwt/jwt/v4
go get -u github.com/golang-jwt/jwt/v5
```

### Signature
Expand Down Expand Up @@ -55,7 +55,7 @@ import (
"github.com/gofiber/fiber/v2"

jwtware "github.com/gofiber/jwt/v4"
"github.com/golang-jwt/jwt/v4"
"github.com/golang-jwt/jwt/v5"
)

func main() {
Expand Down Expand Up @@ -154,7 +154,7 @@ import (
"github.com/gofiber/fiber/v2"

jwtware "github.com/gofiber/jwt/v4"
"github.com/golang-jwt/jwt/v4"
"github.com/golang-jwt/jwt/v5"
)

var (
Expand Down Expand Up @@ -261,7 +261,7 @@ import (
"github.com/gofiber/fiber/v2"

jwtware "github.com/gofiber/jwt/v4"
"github.com/golang-jwt/jwt/v4"
"github.com/golang-jwt/jwt/v5"
)

func main() {
Expand Down

0 comments on commit 4ae7395

Please sign in to comment.