mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 16:51:55 +00:00
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.
23 lines
689 B
Go
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"
|
|
)
|