Remove println

This commit is contained in:
simon987 2020-06-25 21:54:57 -04:00
parent 7772195f85
commit 68cc3b7c81

View File

@ -4,7 +4,6 @@ import (
"bytes"
"encoding/base64"
"encoding/json"
"fmt"
"github.com/simon987/task_tracker/api"
"github.com/simon987/task_tracker/storage"
"io/ioutil"
@ -75,7 +74,6 @@ func unmarshalResponse(r *http.Response, result interface{}) error {
if err != nil {
return err
}
fmt.Println(string(data))
err = json.Unmarshal(data, result)
if err != nil {
return err