diff --git a/microservices/simple-http/main.go b/microservices/simple-http/main.go index d7f2738..69c0232 100644 --- a/microservices/simple-http/main.go +++ b/microservices/simple-http/main.go @@ -7,6 +7,6 @@ func handleHttp(res http.ResponseWriter, req *http.Request) { } func main() { - http.HandleFunc("/a/", handleHttp) + http.HandleFunc("/", handleHttp) http.ListenAndServe(":8080", nil) }