Explorar el Código

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

  Added comment of a link to were the Post() function came from.
Apollo hace 3 años
padre
commit
61cef07bc4
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  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 {