Files
curlx/post.go
T
2024-03-23 13:11:15 +08:00

11 lines
182 B
Go

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)
}