80ac8c1df0
This commit adds commands 'status', 'enable' and 'disable' for autopilot. The commands will only be enabled for autopilotrpc builds of lncli.
11 lines
192 B
Go
11 lines
192 B
Go
// +build !autopilotrpc
|
|
|
|
package main
|
|
|
|
import "github.com/urfave/cli"
|
|
|
|
// autopilotCommands will return nil for non-autopilotrpc builds.
|
|
func autopilotCommands() []cli.Command {
|
|
return nil
|
|
}
|