mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-05 21:07:58 +00:00
209e68c1ba
Also adds idle time and keepalive parameters because how this is configured has changed in the new package version. The values are those that seems like might already be default, if keep-alives were enabled, which is not obvious from the doc comments. Also, Go 1.19 gofmt reformatting of comments.
16 lines
428 B
Go
16 lines
428 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
|
|
|
|
//go:build tools
|
|
// +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"
|
|
)
|