mirror of
https://github.com/talent-plan/tinykv.git
synced 2025-01-13 13:50:43 +08:00
13 lines
289 B
Go
13 lines
289 B
Go
|
// +build modguard
|
||
|
|
||
|
package tools
|
||
|
|
||
|
import (
|
||
|
_ "github.com/dnephin/govet"
|
||
|
_ "github.com/go-playground/overalls"
|
||
|
_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
|
||
|
_ "github.com/mgechev/revive"
|
||
|
_ "github.com/pingcap/failpoint/failpoint-ctl"
|
||
|
_ "golang.org/x/tools/cmd/goimports"
|
||
|
)
|