mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-24 22:58:18 +01:00
10 lines
245 B
Go
10 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}
|
|
}
|