2022-01-19 21:33:15 +01:00
|
|
|
//go:build !dev
|
|
|
|
// +build !dev
|
|
|
|
|
2024-08-23 10:57:59 +02:00
|
|
|
package commands
|
2022-01-19 21:33:15 +01:00
|
|
|
|
|
|
|
import "github.com/urfave/cli"
|
|
|
|
|
|
|
|
// devCommands will return nil for non-devrpc builds.
|
|
|
|
func devCommands() []cli.Command {
|
|
|
|
return nil
|
|
|
|
}
|