diff --git a/httpServer.go b/httpServer.go deleted file mode 100644 index b75f2d0..0000000 --- a/httpServer.go +++ /dev/null @@ -1,15 +0,0 @@ -package main - -import ( - "fmt" - "net/http" -) - -func main() { - http.HandleFunc("/", handler) - http.ListenAndServe("localhost:8080", nil) -} - -func handler(w http.ResponseWriter, r *http.Request) { - fmt.Fprintln(w, "Hello, World!") -}