2022-04-01 09:45:46 -07:00
|
|
|
//go:build !peersrpc
|
|
|
|
// +build !peersrpc
|
|
|
|
|
2024-08-23 10:57:59 +02:00
|
|
|
package commands
|
2022-04-01 09:45:46 -07:00
|
|
|
|
|
|
|
import "github.com/urfave/cli"
|
|
|
|
|
|
|
|
// peersCommands will return nil for non-peersrpc builds.
|
|
|
|
func peersCommands() []cli.Command {
|
|
|
|
return nil
|
|
|
|
}
|