1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-07-16 05:56:51 +02:00

remove unused function

This commit is contained in:
Chris Lu 2020-11-15 20:15:07 -08:00
parent 71056dae07
commit 2bd6fd3bbe

View file

@ -1,7 +1,6 @@
package util
import (
"bytes"
"compress/gzip"
"encoding/json"
"errors"
@ -29,22 +28,6 @@ func init() {
}
}
func PostBytes(url string, body []byte) ([]byte, error) {
r, err := client.Post(url, "", bytes.NewReader(body))
if err != nil {
return nil, fmt.Errorf("Post to %s: %v", url, err)
}
defer r.Body.Close()
b, err := ioutil.ReadAll(r.Body)
if err != nil {
return nil, fmt.Errorf("Read response body: %v", err)
}
if r.StatusCode >= 400 {
return nil, fmt.Errorf("%s: %s", url, r.Status)
}
return b, nil
}
func Post(url string, values url.Values) ([]byte, error) {
r, err := client.PostForm(url, values)
if err != nil {