summaryrefslogtreecommitdiffhomepage
path: root/test/go/command_line_arguments
diff options
context:
space:
mode:
authorAndrey Zelenkov <zelenkov@nginx.com>2019-08-14 14:06:28 +0300
committerAndrey Zelenkov <zelenkov@nginx.com>2019-08-14 14:06:28 +0300
commit8904c87c6beb4f2b080bf4269fb211e6f2eea7f2 (patch)
tree1179b22131d2b9a0c92cb15ea5c266baab62259c /test/go/command_line_arguments
parentb3b7013edaa142318349e46825f250b7ab6b2bc0 (diff)
downloadunit-8904c87c6beb4f2b080bf4269fb211e6f2eea7f2.tar.gz
unit-8904c87c6beb4f2b080bf4269fb211e6f2eea7f2.tar.bz2
Tests: goftm used for Go applications.
Diffstat (limited to 'test/go/command_line_arguments')
-rw-r--r--test/go/command_line_arguments/app.go24
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)
}