forked from sourcegraph/sourcegraph-public-snapshot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtools.go
More file actions
31 lines (23 loc) · 931 Bytes
/
tools.go
File metadata and controls
31 lines (23 loc) · 931 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//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/v2/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
_ "chainguard.dev/apko/pkg/lock"
_ "github.com/pseudomuto/protoc-gen-doc"
_ "github.com/maxbrunsfeld/counterfeiter/v6"
)