sourcegraph/dev/tools.go
Keegan Carruthers-Smith 6d376d871a
all: rename go module google/zoekt to sourcegraph/zoekt (#40353)
We have updated the module name in the zoekt repo to our own repository name.
This means we can remove the replace directive and just rely on normal go
tooling.

Note: at the same time we rename the default branch for zoekt from master to
main.

Test Plan: master dry run in CI.
2022-08-15 16:49:26 +01:00

23 lines
689 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"
)