mirror of
https://github.com/lightningnetwork/lnd.git
synced 2026-08-20 13:27:27 +02:00
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
|
||
|
|
}
|