2
0
mirror of https://github.com/guggero/chantools synced 2024-11-09 07:10:32 +00:00
chantools/tools/tools.go

16 lines
518 B
Go
Raw Normal View History

2023-02-23 10:32:07 +00:00
//go:build buildtools
// +build buildtools
2022-07-18 07:24:17 +00:00
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/ory/go-acc"
_ "github.com/rinchsan/gosimports/cmd/gosimports"
)