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/empty | |
parent | b3b7013edaa142318349e46825f250b7ab6b2bc0 (diff) | |
download | unit-8904c87c6beb4f2b080bf4269fb211e6f2eea7f2.tar.gz unit-8904c87c6beb4f2b080bf4269fb211e6f2eea7f2.tar.bz2 |
Tests: goftm used for Go applications.
Diffstat (limited to 'test/go/empty')
-rw-r--r-- | test/go/empty/app.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/go/empty/app.go b/test/go/empty/app.go index 2e07405f..6e0fce1b 100644 --- a/test/go/empty/app.go +++ b/test/go/empty/app.go @@ -1,13 +1,13 @@ package main import ( - "net/http" - "nginx/unit" + "net/http" + "nginx/unit" ) func handler(w http.ResponseWriter, r *http.Request) {} func main() { - http.HandleFunc("/", handler) - unit.ListenAndServe(":7080", nil) + http.HandleFunc("/", handler) + unit.ListenAndServe(":7080", nil) } |