mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-12-13 14:26:02 +01:00
12 lines
201 B
Go
12 lines
201 B
Go
//go:build !chainrpc
|
|
// +build !chainrpc
|
|
|
|
package commands
|
|
|
|
import "github.com/urfave/cli"
|
|
|
|
// chainCommands will return nil for non-chainrpc builds.
|
|
func chainCommands() []cli.Command {
|
|
return nil
|
|
}
|