2021-08-23 10:35:48 +02:00
|
|
|
//go:build !watchtowerrpc
|
2019-06-20 16:56:11 -07:00
|
|
|
// +build !watchtowerrpc
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import "github.com/urfave/cli"
|
|
|
|
|
|
|
|
// watchtowerCommands will return nil for non-watchtowerrpc builds.
|
|
|
|
func watchtowerCommands() []cli.Command {
|
|
|
|
return nil
|
|
|
|
}
|