Tests: goftm used for Go applications.

This commit is contained in:
Andrey Zelenkov
2019-08-14 14:06:28 +03:00
parent b3b7013eda
commit 8904c87c6b
8 changed files with 78 additions and 78 deletions

View File

@@ -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)
}