Skip to content

Commit

Permalink
Correct parameter naming
Browse files Browse the repository at this point in the history
Correct parameter naming
  • Loading branch information
bingfenglai committed Mar 11, 2022
1 parent 446d602 commit 56430fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manage.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ type Manager interface {
GenerateAuthToken(ctx context.Context, rt ResponseType, tgr *TokenGenerateRequest) (authToken TokenInfo, err error)

// generate the access token
GenerateAccessToken(ctx context.Context, rt GrantType, tgr *TokenGenerateRequest) (accessToken TokenInfo, err error)
GenerateAccessToken(ctx context.Context, gt GrantType, tgr *TokenGenerateRequest) (accessToken TokenInfo, err error)

// refreshing an access token
RefreshAccessToken(ctx context.Context, tgr *TokenGenerateRequest) (accessToken TokenInfo, err error)
Expand Down

0 comments on commit 56430fb

Please sign in to comment.