Remove old comment

This commit is contained in:
Eli Bendersky 2019-05-29 13:49:42 -07:00
parent f43b35ce1a
commit 9e31d5eb10

View File

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