diff --git a/cmd/lncli/commands.go b/cmd/lncli/commands.go index 7517b22f..a31a1b68 100644 --- a/cmd/lncli/commands.go +++ b/cmd/lncli/commands.go @@ -22,9 +22,11 @@ func printRespJson(resp interface{}) { } var ShellCommand = cli.Command{ - Name: "shell", - Usage: "enter interactive shell", - Action: shell, + Name: "shell", + Usage: "enter interactive shell", + Action: func(c *cli.Context) { + println("not implemented yet") + }, } var NewAddressCommand = cli.Command{