Get retrieves user data associated with a refresh token Returns ErrRefreshTokenNotFound if token doesn't exist or is expired
(ctx context.Context, token string)
| 24 | // Get retrieves user data associated with a refresh token |
| 25 | // Returns ErrRefreshTokenNotFound if token doesn't exist or is expired |
| 26 | Get(ctx context.Context, token string) (any, error) |
| 27 | |
| 28 | // Delete removes a refresh token from storage |
| 29 | // Returns an error if the operation fails, but should not error if token doesn't exist |
no outgoing calls