mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-05 21:07:58 +00:00
15 lines
411 B
Go
15 lines
411 B
Go
// This file is never built. It serves to establish dependencies on tools
|
|
// used by go generate and build.go. See
|
|
// https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module
|
|
|
|
// +build tools
|
|
|
|
package tools
|
|
|
|
import (
|
|
_ "github.com/calmh/xdr"
|
|
_ "github.com/gogo/protobuf/protoc-gen-gogofast"
|
|
_ "github.com/maxbrunsfeld/counterfeiter/v6"
|
|
_ "golang.org/x/tools/cmd/goimports"
|
|
)
|