mirror of
https://github.com/golang/go
synced 2024-11-05 15:56:12 -07:00
c426260dee
This allows us to hook functionality from the main tools repository with alternate or extended implementations. Change-Id: Ibc66cdd15ee80f1104a8464f1e28763a41d5765a Reviewed-on: https://go-review.googlesource.com/c/tools/+/196319 Run-TryBot: Ian Cottrell <iancottrell@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Rebecca Stambler <rstambler@golang.org>
25 lines
673 B
Go
25 lines
673 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/gopls/internal/hooks"
|
|
"golang.org/x/tools/internal/lsp/cmd"
|
|
"golang.org/x/tools/internal/tool"
|
|
)
|
|
|
|
func main() {
|
|
ctx := context.Background()
|
|
ctx = hooks.Install(ctx)
|
|
tool.Main(ctx, cmd.New("gopls", "", nil), os.Args[1:])
|
|
}
|