diff --git a/cmd/gopls/main.go b/cmd/gopls/main.go deleted file mode 100644 index 6b6e735492..0000000000 --- a/cmd/gopls/main.go +++ /dev/null @@ -1,23 +0,0 @@ -// Copyright 2018 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -// The gopls command is an LSP server for Go. -// The Language Server Protocol allows any text editor -// to be extended with IDE-like features; -// see https://langserver.org/ for details. -package main // import "golang.org/x/tools/cmd/gopls" - -import ( - "context" - "os" - - "golang.org/x/tools/internal/lsp/cmd" - "golang.org/x/tools/internal/lsp/debug" - "golang.org/x/tools/internal/tool" -) - -func main() { - debug.Version += "-cmd.gopls" - tool.Main(context.Background(), cmd.New("gopls-legacy", "", nil, nil), os.Args[1:]) -}