mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-23 14:40:30 +01:00
10 lines
188 B
Go
10 lines
188 B
Go
// +build !wtclientrpc
|
|
|
|
package main
|
|
|
|
import "github.com/urfave/cli"
|
|
|
|
// wtclientCommands will return nil for non-wtclientrpc builds.
|
|
func wtclientCommands() []cli.Command {
|
|
return nil
|
|
}
|