mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-23 14:40:30 +01:00
11 lines
197 B
Go
11 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
|
|
}
|