Files
quark-go/request.go
2024-11-07 11:25:41 +08:00

13 lines
177 B
Go

package quark
import (
"io"
"net/http"
)
func NewRequest(method string, url string, body io.Reader) *http.Request {
r, _ := http.NewRequest(method, url, body)
return r
}