mirror of
https://github.com/aljazceru/breez-lnd.git
synced 2025-12-17 14:14:21 +01:00
11 lines
188 B
Go
11 lines
188 B
Go
// +build !invoicesrpc
|
|
|
|
package main
|
|
|
|
import "github.com/urfave/cli"
|
|
|
|
// invoicesCommands will return nil for non-invoicesrpc builds.
|
|
func invoicesCommands() []cli.Command {
|
|
return nil
|
|
}
|