diff options
author | Andrey Zelenkov <zelenkov@nginx.com> | 2019-08-14 14:06:28 +0300 |
---|---|---|
committer | Andrey Zelenkov <zelenkov@nginx.com> | 2019-08-14 14:06:28 +0300 |
commit | 8904c87c6beb4f2b080bf4269fb211e6f2eea7f2 (patch) | |
tree | 1179b22131d2b9a0c92cb15ea5c266baab62259c /test/go/command_line_arguments/app.go | |
parent | b3b7013edaa142318349e46825f250b7ab6b2bc0 (diff) | |
download | unit-8904c87c6beb4f2b080bf4269fb211e6f2eea7f2.tar.gz unit-8904c87c6beb4f2b080bf4269fb211e6f2eea7f2.tar.bz2 |
Tests: goftm used for Go applications.
Diffstat (limited to '')
-rw-r--r-- | test/go/command_line_arguments/app.go | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/test/go/command_line_arguments/app.go b/test/go/command_line_arguments/app.go index 228e07c0..234e565e 100644 --- a/test/go/command_line_arguments/app.go +++ b/test/go/command_line_arguments/app.go @@ -1,23 +1,23 @@ package main import ( - "io" - "os" - "fmt" - "strings" - "net/http" - "nginx/unit" + "fmt" + "io" + "net/http" + "nginx/unit" + "os" + "strings" ) func handler(w http.ResponseWriter, r *http.Request) { - args := strings.Join(os.Args[1:], ",") + args := strings.Join(os.Args[1:], ",") - w.Header().Add("X-Arg-0", fmt.Sprintf("%v", os.Args[0])) - w.Header().Add("Content-Length", fmt.Sprintf("%v", len(args))) - io.WriteString(w, args) + w.Header().Add("X-Arg-0", fmt.Sprintf("%v", os.Args[0])) + w.Header().Add("Content-Length", fmt.Sprintf("%v", len(args))) + io.WriteString(w, args) } func main() { - http.HandleFunc("/", handler) - unit.ListenAndServe(":7080", nil) + http.HandleFunc("/", handler) + unit.ListenAndServe(":7080", nil) } |