another goimports fix

This commit is contained in:
Roman Isaev 2024-12-30 17:12:22 +00:00
parent b95070393e
commit 9ebcebee43
No known key found for this signature in database
GPG key ID: 7BE2B6A6C89AEC7F
3 changed files with 4 additions and 7 deletions

View file

@ -322,8 +322,6 @@ func (m *MSC3861UserVerifier) getUserByAccessToken(ctx context.Context, token st
logger.Debugf("PerformDeviceCreationResponse is: %+v", rs)
}
return &requester{
Device: device,
UserID: userID,
@ -402,8 +400,7 @@ type OpenIDConfiguration struct {
AccountManagementActionsSupported []string `json:"account_management_actions_supported"`
}
func fetchOpenIDConfiguration(httpClient *http.Client, authHostURL string) (*
OpenIDConfiguration, error) {
func fetchOpenIDConfiguration(httpClient *http.Client, authHostURL string) (*OpenIDConfiguration, error) {
u, err := url.Parse(authHostURL)
if err != nil {
return nil, err