mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-19 18:10:34 +01:00
12 lines
197 B
Go
12 lines
197 B
Go
//go:build !peersrpc
|
|
// +build !peersrpc
|
|
|
|
package main
|
|
|
|
import "github.com/urfave/cli"
|
|
|
|
// peersCommands will return nil for non-peersrpc builds.
|
|
func peersCommands() []cli.Command {
|
|
return nil
|
|
}
|