2019-01-16 15:01:06 -07:00
|
|
|
// 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"
|
2019-06-12 15:58:43 -06:00
|
|
|
"golang.org/x/tools/internal/lsp/debug"
|
2019-01-16 15:01:06 -07:00
|
|
|
"golang.org/x/tools/internal/tool"
|
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2019-06-12 15:58:43 -06:00
|
|
|
debug.Version += "-cmd.gopls"
|
2019-05-17 08:51:19 -06:00
|
|
|
tool.Main(context.Background(), cmd.New("", nil), os.Args[1:])
|
2019-01-16 15:01:06 -07:00
|
|
|
}
|