mirror of
https://github.com/golang/go
synced 2024-11-18 10:54:40 -07:00
625c92e46d
Change-Id: I246dc9c468ee35586a8332ebdf41f23521adbc6c Reviewed-on: https://go-review.googlesource.com/c/tools/+/186677 Run-TryBot: Ian Cottrell <iancottrell@google.com> Reviewed-by: Rebecca Stambler <rstambler@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
22 lines
592 B
Go
22 lines
592 B
Go
// Copyright 2019 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/gopls"
|
|
|
|
import (
|
|
"context"
|
|
"os"
|
|
|
|
"golang.org/x/tools/internal/lsp/cmd"
|
|
"golang.org/x/tools/internal/tool"
|
|
)
|
|
|
|
func main() {
|
|
tool.Main(context.Background(), cmd.New("gopls", "", nil), os.Args[1:])
|
|
}
|