diff options
Diffstat (limited to 'test/go/post_variables/app.go')
-rw-r--r-- | test/go/post_variables/app.go | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/test/go/post_variables/app.go b/test/go/post_variables/app.go index 433afc62..947976d2 100644 --- a/test/go/post_variables/app.go +++ b/test/go/post_variables/app.go @@ -1,19 +1,19 @@ package main import ( - "net/http" - "nginx/unit" + "net/http" + "nginx/unit" ) func handler(w http.ResponseWriter, r *http.Request) { - r.ParseForm() + r.ParseForm() - w.Header().Set("X-Var-1", r.Form.Get("var1")) - w.Header().Set("X-Var-2", r.Form.Get("var2")) - w.Header().Set("X-Var-3", r.Form.Get("var3")) + w.Header().Set("X-Var-1", r.Form.Get("var1")) + w.Header().Set("X-Var-2", r.Form.Get("var2")) + w.Header().Set("X-Var-3", r.Form.Get("var3")) } func main() { - http.HandleFunc("/", handler) - unit.ListenAndServe(":7080", nil) + http.HandleFunc("/", handler) + unit.ListenAndServe(":7080", nil) } |