mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-12-09 04:13:00 +01:00
cmd/lncli: move commands and export
We want to export some of our CLI code to re-use in other projects. But in Golang you cannot import code from a `main` package. So we need to move the actual code into its own package and only have the `func main()` in the `main` package.
This commit is contained in:
11
cmd/commands/devrpc_default.go
Normal file
11
cmd/commands/devrpc_default.go
Normal file
@@ -0,0 +1,11 @@
|
||||
//go:build !dev
|
||||
// +build !dev
|
||||
|
||||
package commands
|
||||
|
||||
import "github.com/urfave/cli"
|
||||
|
||||
// devCommands will return nil for non-devrpc builds.
|
||||
func devCommands() []cli.Command {
|
||||
return nil
|
||||
}
|
||||
Reference in New Issue
Block a user