diff --git a/tools/serve.go b/tools/serve.go index c54f79b..b31a6b0 100644 --- a/tools/serve.go +++ b/tools/serve.go @@ -9,7 +9,5 @@ func main() { port := "8000" publicDir := "public" fmt.Printf("Serving Go by Example at http://127.0.0.1:%s\n", port) - - // Simple static webserver: http.ListenAndServe(":"+port, http.FileServer(http.Dir(publicDir))) }