lnd/cmd/lncli/devrpc_default.go

12 lines
181 B
Go
Raw Normal View History

2022-01-19 21:33:15 +01:00
//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
}