mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-12-12 05:42:25 +01:00
12 lines
216 B
Go
12 lines
216 B
Go
//go:build !invoicesrpc
|
|
// +build !invoicesrpc
|
|
|
|
package commands
|
|
|
|
import "github.com/urfave/cli"
|
|
|
|
// invoicesCommands will return nil for non-invoicesrpc builds.
|
|
func invoicesCommands() []cli.Command {
|
|
return nil
|
|
}
|