diff --git a/internal/http/server.go b/internal/http/server.go index f8aa1fd..943548e 100644 --- a/internal/http/server.go +++ b/internal/http/server.go @@ -89,9 +89,7 @@ func (s *Server) configureRouter() { srv.AddTransport(&wsTransport) s.router.Handle("/", playground.Handler("GraphQL playground", "/query")) - s.router.Handle("/ws", srv) s.router.Handle("/query", srv) - s.router.Handle("/uploads/*", http.StripPrefix("/uploads/", http.FileServer(http.Dir("./uploads")))) }