Added comment of a link to were the Post() function came from.
@@ -6,6 +6,7 @@ import (
"net/url"
)
+// https://zetcode.com/golang/getpostrequest/ post_req_form.go
func Post(where string, data *url.Values) *http.Response {
resp, err := http.PostForm(where, *data)
if err != nil {