mirror of
https://github.com/lightningnetwork/lnd.git
synced 2026-08-14 12:42:48 +02:00
12 lines
181 B
Go
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
|
||
|
|
}
|