mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-03-06 18:37:11 +01:00
11 lines
217 B
Go
11 lines
217 B
Go
|
// +build routerrpc
|
||
|
|
||
|
package main
|
||
|
|
||
|
import "github.com/urfave/cli"
|
||
|
|
||
|
// routerCommands will return nil for non-routerrpc builds.
|
||
|
func routerCommands() []cli.Command {
|
||
|
return []cli.Command{queryMissionControlCommand}
|
||
|
}
|