blob: ab69ba7f0fd79ffe2b443cf4ce2f45961883bd5e [file] [log] [blame]
// Copyright 2024 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 binary vscgo is a helper of the VS Code Go extension.
// The source is distributed with the extension and compiled when
// the extension is first activated.
package main
import "github.com/golang/vscode-go/internal/vscgo"
func main() {
vscgo.Main()
}