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
It would be very helpful to have the method's parameters names in the interfaces definitions, e.g.
type AuthStorage interface { CreateAuthRequest(ctx context.Context, authReq *oidc.AuthRequest, userID string) (op.AuthRequest, error) // ... }
instead of:
type AuthStorage interface { CreateAuthRequest(context.Context, *oidc.AuthRequest, string) (AuthRequest, error) // ... }
The text was updated successfully, but these errors were encountered:
We agree! We have a similar discussion already open here: #145 We are open for pull requests!
Closing this as duplicate.
Sorry, something went wrong.
No branches or pull requests
It would be very helpful to have the method's parameters names in the interfaces definitions, e.g.
instead of:
The text was updated successfully, but these errors were encountered: