From 8904c87c6beb4f2b080bf4269fb211e6f2eea7f2 Mon Sep 17 00:00:00 2001 From: Andrey Zelenkov Date: Wed, 14 Aug 2019 14:06:28 +0300 Subject: Tests: goftm used for Go applications. --- test/go/empty/app.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'test/go/empty') 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) } -- cgit