lnd/tools/tools.go
Oliver Gugger 70ac201cb8
make+tools: remove goacc, use Go 1.20 builtin functionality
Starting with Go 1.20 the -coverprofile flag does the same that GOACC
did before.
2025-02-28 14:55:33 +01:00

14 lines
481 B
Go

//go:build tools
// +build tools
package lnd
// The other imports represent our build tools. Instead of defining a commit we
// want to use for those golang based tools, we use the go mod versioning system
// to unify the way we manage dependencies. So we define our build tool
// dependencies here and pin the version in go.mod.
import (
_ "github.com/btcsuite/btcd"
_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
_ "github.com/rinchsan/gosimports/cmd/gosimports"
)