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