Skip to content

Commit

Permalink
chore(healthcare): update practices from deprecated ioutil to io (#4691)
Browse files Browse the repository at this point in the history
  • Loading branch information
alarconesparza authored Dec 12, 2024
1 parent 93e9f4a commit e68a50c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions healthcare/fhir_resource_search_post.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ import (
"context"
"fmt"
"io"
"io/ioutil"
"log"
"net/http"

Expand Down Expand Up @@ -69,7 +68,7 @@ func searchFHIRResourcesPost(w io.Writer, projectID, location, datasetID, fhirSt

defer resp.Body.Close()

respBytes, err := ioutil.ReadAll(resp.Body)
respBytes, err := io.ReadAll(resp.Body)
if err != nil {
return fmt.Errorf("could not read response: %w", err)
}
Expand Down

0 comments on commit e68a50c

Please sign in to comment.