From 35c991aa953d4fdd00ef8bd1becf4ad9100a8ddb Mon Sep 17 00:00:00 2001 From: Tyler Auerbeck Date: Mon, 10 Sep 2018 15:42:15 -0400 Subject: [PATCH] Remove flag package import (#373) --- serving/samples/helloworld-go/helloworld.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/serving/samples/helloworld-go/helloworld.go b/serving/samples/helloworld-go/helloworld.go index acb49a6f9..c845ea9a2 100644 --- a/serving/samples/helloworld-go/helloworld.go +++ b/serving/samples/helloworld-go/helloworld.go @@ -17,7 +17,6 @@ limitations under the License. package main import ( - "flag" "fmt" "log" "net/http" @@ -34,7 +33,6 @@ func handler(w http.ResponseWriter, r *http.Request) { } func main() { - flag.Parse() log.Print("Hello world sample started.") http.HandleFunc("/", handler)