mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-20 10:39:01 +01: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
|
|
}
|