mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-06-22 06:42:40 +02:00
11 lines
245 B
Go
11 lines
245 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}
|
|
}
|