2021-08-23 10:35:48 +02:00
|
|
|
//go:build tools
|
2021-04-23 14:15:33 +02:00
|
|
|
// +build tools
|
|
|
|
|
|
|
|
package lnd
|
|
|
|
|
2022-02-07 13:58:21 +01:00
|
|
|
// 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.
|
2021-04-23 14:15:33 +02:00
|
|
|
import (
|
|
|
|
_ "github.com/btcsuite/btcd"
|
2021-11-29 13:11:04 +01:00
|
|
|
_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
|
|
|
|
_ "github.com/ory/go-acc"
|
2022-02-07 13:58:20 +01:00
|
|
|
_ "github.com/rinchsan/gosimports/cmd/gosimports"
|
2021-04-23 14:15:33 +02:00
|
|
|
)
|