11 lines
196 B
Go
11 lines
196 B
Go
// +build !watchtowerrpc
|
|
|
|
package main
|
|
|
|
import "github.com/urfave/cli"
|
|
|
|
// watchtowerCommands will return nil for non-watchtowerrpc builds.
|
|
func watchtowerCommands() []cli.Command {
|
|
return nil
|
|
}
|