mirror of
https://github.com/golang/go
synced 2024-11-18 10:04:43 -07:00
cmd/golsp: remove golsp binary, since we've moved to gopls
We left the golsp binary for a few weeks after migrating to gopls. Remove it now. Change-Id: Iad44a3c9cf1427be6e2d81cc7a8e9fc60ef6ee50 Reviewed-on: https://go-review.googlesource.com/c/163779 Run-TryBot: Rebecca Stambler <rstambler@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Cottrell <iancottrell@google.com>
This commit is contained in:
parent
83362c3779
commit
69f75a3b06
@ -1,26 +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.
|
||||
|
||||
// -----------------------------------------------------------------
|
||||
// WARNING: golsp has been renamed to gopls (see cmd/gopls/main.go).
|
||||
// This file will be deleted soon.
|
||||
// -----------------------------------------------------------------
|
||||
|
||||
// The golsp 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/golsp"
|
||||
|
||||
import (
|
||||
"context"
|
||||
"os"
|
||||
|
||||
"golang.org/x/tools/internal/lsp/cmd"
|
||||
"golang.org/x/tools/internal/tool"
|
||||
)
|
||||
|
||||
func main() {
|
||||
tool.Main(context.Background(), &cmd.Application{}, os.Args[1:])
|
||||
}
|
Loading…
Reference in New Issue
Block a user