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/404 | |
parent | b3b7013edaa142318349e46825f250b7ab6b2bc0 (diff) | |
download | unit-8904c87c6beb4f2b080bf4269fb211e6f2eea7f2.tar.gz unit-8904c87c6beb4f2b080bf4269fb211e6f2eea7f2.tar.bz2 |
Tests: goftm used for Go applications.
Diffstat (limited to 'test/go/404')
-rw-r--r-- | test/go/404/app.go | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/test/go/404/app.go b/test/go/404/app.go index abb33066..08fe56c9 100644 --- a/test/go/404/app.go +++ b/test/go/404/app.go @@ -1,22 +1,22 @@ package main import ( - "io" - "io/ioutil" - "net/http" - "nginx/unit" + "io" + "io/ioutil" + "net/http" + "nginx/unit" ) func handler(w http.ResponseWriter, r *http.Request) { - b, e := ioutil.ReadFile("404.html") + b, e := ioutil.ReadFile("404.html") - if e == nil { - w.WriteHeader(http.StatusNotFound) - io.WriteString(w, string(b)) - } + if e == nil { + w.WriteHeader(http.StatusNotFound) + io.WriteString(w, string(b)) + } } func main() { - http.HandleFunc("/", handler) - unit.ListenAndServe(":7080", nil) + http.HandleFunc("/", handler) + unit.ListenAndServe(":7080", nil) } |