11 lines
198 B
Go
Raw Normal View History

2023-04-11 21:39:49 +09:00
package fetch
import (
"net/http"
)
// Do sends an HTTP request and returns an HTTP response
func (c *Client) Do(req *Request) (*http.Response, error) {
return fetch(c.namespace, req.Request)
}