From 4224984e1bd864a5193826d5465c6172970e244f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roberto=20Abdelkader=20Mart=C3=ADnez=20P=C3=A9rez?= Date: Fri, 4 Oct 2019 14:18:42 +0200 Subject: [PATCH] Add spacing to comments --- internal/client/get.go | 2 +- internal/http/request.go | 18 ++++++++---------- 2 files changed, 9 insertions(+), 11 deletions(-) diff --git a/internal/client/get.go b/internal/client/get.go index 96ac89b..1899796 100644 --- a/internal/client/get.go +++ b/internal/client/get.go @@ -6,7 +6,7 @@ import ( "github.com/BBVA/kapow/internal/http" ) -//GetData will perform the request and write the results on the provided writer +// GetData will perform the request and write the results on the provided writer func GetData(host, id, path string, wr io.Writer) error { url := host + "/handlers/" + id + path return http.Get(url, "", nil, wr) diff --git a/internal/http/request.go b/internal/http/request.go index 1ca76a2..4ea7c83 100644 --- a/internal/http/request.go +++ b/internal/http/request.go @@ -7,32 +7,32 @@ import ( "net/http" ) -//Get perform a request using Request with the GET method +// Get perform a request using Request with the GET method func Get(url string, contentType string, r io.Reader, w io.Writer) error { return Request("GET", url, contentType, r, w) } -//Post perform a request using Request with the POST method +// Post perform a request using Request with the POST method func Post(url string, contentType string, r io.Reader, w io.Writer) error { return Request("POST", url, contentType, r, w) } -//Put perform a request using Request with the PUT method +// Put perform a request using Request with the PUT method func Put(url string, contentType string, r io.Reader, w io.Writer) error { return Request("PUT", url, contentType, r, w) } -//Delete perform a request using Request with the DELETE method +// Delete perform a request using Request with the DELETE method func Delete(url string, contentType string, r io.Reader, w io.Writer) error { return Request("DELETE", url, contentType, r, w) } var devnull = ioutil.Discard -//Request will perform the request to the given url and method sending the -//content of the given reader as the body and writing all the contents -//of the response to the given writer. The reader and writer are -//optional. +// Request will perform the request to the given url and method sending the +// content of the given reader as the body and writing all the contents +// of the response to the given writer. The reader and writer are +// optional. func Request(method string, url string, contentType string, r io.Reader, w io.Writer) error { req, err := http.NewRequest(method, url, r) if err != nil { @@ -65,6 +65,4 @@ func Request(method string, url string, contentType string, r io.Reader, w io.Wr } return err - - // TODO: close the connection, otherwise we'll have a port leak in the server }