Remove flag package import (#373)

This commit is contained in:
Tyler Auerbeck 2018-09-10 15:42:15 -04:00 committed by Knative Prow Robot
parent 0310b0c07b
commit 35c991aa95
1 changed files with 0 additions and 2 deletions

View File

@ -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)