We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Now the contrib version doesn't have the separation as in the original fiber
jwtware "github.com/gofiber/contrib/jwt"
I want to be able to easily switch between versions, for example I want to use jwt compatible with fiber 3.
So just change
jwtware "github.com/gofiber/contrib/v2/jwt"
To
jwtware "github.com/gofiber/contrib/v3/jwt"
What do you think guys?
No response
The text was updated successfully, but these errors were encountered:
@KoNekoD Each contrib has it's own go.mod so the version goes at the end.
Example:
jwtware "github.com/gofiber/contrib/jwt/v2 jwtware "github.com/gofiber/contrib/jwt/v3
There's no go.mod file at the root of this repo.
go.mod
Sorry, something went wrong.
No branches or pull requests
Feature Description
Now the contrib version doesn't have the separation as in the original fiber
jwtware "github.com/gofiber/contrib/jwt"
I want to be able to easily switch between versions, for example I want to use jwt compatible with fiber 3.
So just change
jwtware "github.com/gofiber/contrib/v2/jwt"
To
jwtware "github.com/gofiber/contrib/v3/jwt"
What do you think guys?
Additional Context (optional)
No response
Code Snippet (optional)
Checklist:
The text was updated successfully, but these errors were encountered: