@@ -0,0 +1,10 @@
package curlx
import (
"io"
"net/http"
)
func Post(url string, contentType string, body io.Reader) (resp *http.Response, err error) {
return http.Post(url, contentType, body)
}
The note is not visible to the blocked user.