mirror of
https://github.com/lightningnetwork/lnd.git
synced 2026-08-20 13:27:27 +02:00
14 lines
274 B
Go
14 lines
274 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,
|
|
resetMissionControlCommand,
|
|
buildRouteCommand,
|
|
}
|
|
}
|