sourcegraph/dev/tools.go
Robert Lin 407b0b7201
cody-gateway: rename service from LLM-proxy (#52565)
This change only renames internal references and the LLM-proxy image
itself.

Will follow up with another PR to rename licensing, database tables, and
the GraphQL queries/mutations.

Paired with https://github.com/sourcegraph/infrastructure/pull/5010
Part of #52258 

## Test plan

CI, `sg start dotcom`, `sg run llm-proxy`
2023-05-30 08:44:27 -07:00

26 lines
776 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"
)