mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 15:51:43 +00:00
10 lines
206 B
Go
10 lines
206 B
Go
//go:build tools
|
|
// +build tools
|
|
|
|
package main
|
|
|
|
import (
|
|
// go-mockgen is used to codegen mockable interfaces, used in precise code intel tests
|
|
_ "github.com/derision-test/go-mockgen/v2/cmd/go-mockgen"
|
|
)
|