This commit is contained in:
PB
2025-11-16 14:53:34 +01:00
parent d5eb16b8cd
commit 53d765d723
2 changed files with 0 additions and 2 deletions

View File

@@ -32,7 +32,6 @@ func (c *HttpClient) SendGet(url string, data, out any) error {
return err
}
fmt.Println("return nil")
return nil
}

View File

@@ -17,7 +17,6 @@ func (a *IdentityAPI) CheckAccess(url, srv string) (*identity.CheckAccessRespons
req := &identity.CheckAccessRequestDTO{URL: url, Service: srv}
res := new(identity.CheckAccessResponseDTO)
// targetURL := fmt.Sprintf("/v1/access?url=%s&srv=%s", url, srv)
if err := a.httpClient.SendGet("/v1/access", req, res); err != nil {
return nil, err
}