mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-19 09:53:54 +01: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
|
|
}
|