chore(): Migrates from the deprecated ioutil
This commit is contained in:
parent
6dbc5784df
commit
fd320d9ec3
1 changed files with 2 additions and 3 deletions
5
main.go
5
main.go
|
@ -3,7 +3,6 @@ package main
|
|||
import (
|
||||
"fmt"
|
||||
"io"
|
||||
"io/ioutil"
|
||||
"log"
|
||||
"net/http"
|
||||
"os"
|
||||
|
@ -15,7 +14,7 @@ import (
|
|||
)
|
||||
|
||||
// VERSION The version release
|
||||
const VERSION = "0.1.4"
|
||||
const VERSION = "0.1.5"
|
||||
|
||||
// AUTHOR The author name
|
||||
const AUTHOR = "Elia el Lazkani"
|
||||
|
@ -72,7 +71,7 @@ func (w weather) get(req *http.Request, download bool) {
|
|||
|
||||
// `weather` method to print the weather
|
||||
func (w weather) print(resp *http.Response) {
|
||||
body, err := ioutil.ReadAll(resp.Body)
|
||||
body, err := io.ReadAll(resp.Body)
|
||||
if err != nil {
|
||||
log.Fatal("Error reading body. ", err)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue