From 39be851f428f5597d13c615523b1ff70db3ed110 Mon Sep 17 00:00:00 2001 From: Anirudh Ramanathan Date: Fri, 7 Feb 2025 10:13:44 -0800 Subject: [PATCH] remove location list call from server --- services/location/server.go | 1 - 1 file changed, 1 deletion(-) diff --git a/services/location/server.go b/services/location/server.go index b93f68b..ab259b2 100644 --- a/services/location/server.go +++ b/services/location/server.go @@ -72,7 +72,6 @@ func (s *Server) Run() error { func (s *Server) createServeMux() http.Handler { mux := tracing.NewServeMux(false, s.tracerProvider, s.logger) - mux.Handle("GET /locations", http.HandlerFunc(s.listLocations)) mux.Handle("GET /location", http.HandlerFunc(s.getLocation)) mux.Handle("POST /location", http.HandlerFunc(s.createLocation)) mux.Handle("DELETE /location", http.HandlerFunc(s.deleteLocation))