sourcegraph/dev/tools.go
Robert Lin 3efaaf9206
doc/telemetry: add exported events schema (#57106)
This adds a generated markdown reference that can serve as a source-of-truth for exactly what data we do and don't export from Sourcegraph instances.

Table output is a little funky, unless https://github.com/pseudomuto/protoc-gen-doc/pull/520 gets landed one day (for that new `br` template function)

---------

Co-authored-by: William Bezuidenhout <william.bezuidenhout@sourcegraph.com>
2023-09-28 13:51:44 -07:00

29 lines
847 B
Go

//go:build tools
// +build tools
package main
import (
// zoekt-* used in sourcegraph/server docker image build
_ "github.com/sourcegraph/zoekt/cmd/zoekt-archive-index"
_ "github.com/sourcegraph/zoekt/cmd/zoekt-git-index"
_ "github.com/sourcegraph/zoekt/cmd/zoekt-sourcegraph-indexserver"
_ "github.com/sourcegraph/zoekt/cmd/zoekt-webserver"
// go-mockgen is used to codegen mockable interfaces, used in precise code intel tests
_ "github.com/derision-test/go-mockgen/cmd/go-mockgen"
// used in schema pkg
_ "github.com/sourcegraph/go-jsonschema/cmd/go-jsonschema-compiler"
_ "golang.org/x/tools/cmd/goimports"
// used in many places
_ "golang.org/x/tools/cmd/stringer"
// Used for cody-gateway to generate a GraphQL client
_ "github.com/Khan/genqlient"
// Used to generate schema
_ "github.com/pseudomuto/protoc-gen-doc"
)