From dfef39c64132192d13e2315364a74f1b0244791e Mon Sep 17 00:00:00 2001 From: Wolfy-J Date: Fri, 15 Jun 2018 15:54:14 +0300 Subject: readme, samples, golint, build scripts --- service/http/request.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'service/http/request.go') diff --git a/service/http/request.go b/service/http/request.go index 2e8ae090..3082eeb5 100644 --- a/service/http/request.go +++ b/service/http/request.go @@ -26,8 +26,8 @@ type Request struct { // Method contains name of HTTP method used for the request. Method string `json:"method"` - // Uri contains full request Uri with scheme and query. - Uri string `json:"uri"` + // URI contains full request URI with scheme and query. + URI string `json:"uri"` // Headers contains list of request headers. Headers http.Header `json:"headers"` @@ -53,7 +53,7 @@ func NewRequest(r *http.Request, cfg *UploadsConfig) (req *Request, err error) { req = &Request{ Protocol: r.Proto, Method: r.Method, - Uri: uri(r), + URI: uri(r), Headers: r.Header, Cookies: make(map[string]string), RawQuery: r.URL.RawQuery, -- cgit v1.2.3