summaryrefslogtreecommitdiffhomepage
path: root/test/go/404/app.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/go/404/app.go')
-rw-r--r--test/go/404/app.go22
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)
}