diff --git a/src/g2g/main.go b/src/g2g/main.go index dad57ce..fe88c74 100644 --- a/src/g2g/main.go +++ b/src/g2g/main.go @@ -5,7 +5,7 @@ import ( "encoding/json" "errors" "fmt" - "io/ioutil" + "io" "log" "net/http" "sync" @@ -29,7 +29,7 @@ func GetReposFromGitHub(config *config.Config) ([]GitHubRepo, error) { return nil, err } - respbody, err := ioutil.ReadAll(resp.Body) + respbody, err := io.ReadAll(resp.Body) if err != nil { return nil, err } @@ -129,7 +129,7 @@ func GetGiteaUserUID(config *config.Config) error { return err } - respbody, err := ioutil.ReadAll(resp.Body) + respbody, err := io.ReadAll(resp.Body) if err != nil { return err }