mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-04-27 20:32:22 +02:00
15 lines
274 B
Go
15 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,
|
|
}
|
|
}
|