Skip to content

Commit

Permalink
fix: update practices from deprecated ioutil to io (#4685)
Browse files Browse the repository at this point in the history
  • Loading branch information
OremGLG authored Dec 12, 2024
1 parent ebecc18 commit 8d5b515
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions healthcare/fhir_metadata_get.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ import (
"context"
"fmt"
"io"
"io/ioutil"

healthcare "google.golang.org/api/healthcare/v1"
)
Expand All @@ -44,7 +43,7 @@ func getFHIRMetadata(w io.Writer, projectID, location, datasetID, fhirStoreID st

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 8d5b515

Please sign in to comment.