mirror of
https://github.com/lightninglabs/lightning-terminal.git
synced 2026-08-20 13:28:34 +02:00
14 lines
442 B
Go
14 lines
442 B
Go
//go:build tools
|
|
// +build tools
|
|
|
|
package terminal
|
|
|
|
import (
|
|
// 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.
|
|
_ "github.com/lightninglabs/faraday/cmd/frcli"
|
|
_ "github.com/lightninglabs/loop/cmd/loop"
|
|
_ "github.com/lightninglabs/pool/cmd/pool"
|
|
_ "github.com/lightningnetwork/lnd/cmd/lncli"
|
|
)
|