瀏覽代碼

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

  Added comment of a link to were the Post() function came from.
Apollo 3 年之前
父節點
當前提交
61cef07bc4
共有 1 個文件被更改,包括 1 次插入0 次删除
  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 {