Ver Fonte

doc(poster.go): added comment for post details

  Added comment of a link to were the Post() function came from.
Apollo há 3 anos atrás
pai
commit
61cef07bc4
1 ficheiros alterados com 1 adições e 0 exclusões
  1. 1 0
      poster.go

+ 1 - 0
poster.go

@@ -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 {