cmd/lncli/watchtower: add tower info command

This commit is contained in:
Conner Fromknecht
2019-06-20 16:56:11 -07:00
parent ea311649b4
commit 24b160b1c4
3 changed files with 77 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
// +build !watchtowerrpc
package main
import "github.com/urfave/cli"
// watchtowerCommands will return nil for non-watchtowerrpc builds.
func watchtowerCommands() []cli.Command {
return nil
}