Files
lnd/cmd/commands/autopilotrpc_default.go
2024-04-24 17:02:32 +02:00

12 lines
221 B
Go

//go:build !autopilotrpc
// +build !autopilotrpc
package commands
import "github.com/urfave/cli"
// autopilotCommands will return nil for non-autopilotrpc builds.
func autopilotCommands() []cli.Command {
return nil
}