lnd/cmd/lncli/devrpc_default.go
2022-01-24 17:43:00 +01:00

12 lines
181 B
Go

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