diff options
Diffstat (limited to 'test/go/cookies/app.go')
-rw-r--r-- | test/go/cookies/app.go | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/test/go/cookies/app.go b/test/go/cookies/app.go index 6fb9def0..e6647ea8 100644 --- a/test/go/cookies/app.go +++ b/test/go/cookies/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) { - cookie1, _ := r.Cookie("var1") - cookie2, _ := r.Cookie("var2") + cookie1, _ := r.Cookie("var1") + cookie2, _ := r.Cookie("var2") - w.Header().Set("X-Cookie-1", cookie1.Value) - w.Header().Set("X-Cookie-2", cookie2.Value) + w.Header().Set("X-Cookie-1", cookie1.Value) + w.Header().Set("X-Cookie-2", cookie2.Value) } func main() { - http.HandleFunc("/", handler) - unit.ListenAndServe(":7080", nil) + http.HandleFunc("/", handler) + unit.ListenAndServe(":7080", nil) } |