lightning-terminal/deps.go
Viktor Torstensson 4a9ac9ed3c
multi: remove legacy // +build tag Lines
With a upgrade to a never version of newer golang.org/x/tools/govet,
a lint check to check for legacy buildtag lines starting with
`// +build` has been added, as they're no longer needed.

In order for the `make lint` check to pass with the newer version, we
remove such buildtag lines.
2025-11-25 01:38:22 +01:00

13 lines
422 B
Go

//go:build deps
package terminal
// This is a workaround to make sure go mod keeps around the dependencies in the
// go.sum file that we only use during compilation of the CLI binaries that are
// delivered together with LiT.
import (
_ "github.com/lightninglabs/faraday/cmd/frcli"
_ "github.com/lightninglabs/loop/cmd/loop"
_ "github.com/lightninglabs/pool/cmd/pool"
_ "github.com/lightningnetwork/lnd/cmd/lncli"
)