mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-24 06:47:44 +01:00
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
|
||
|
}
|