2019-05-10 11:39:16 +03:00
|
|
|
// +build routerrpc
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import "github.com/urfave/cli"
|
|
|
|
|
|
|
|
// routerCommands will return nil for non-routerrpc builds.
|
|
|
|
func routerCommands() []cli.Command {
|
2019-06-19 10:22:18 +03:00
|
|
|
return []cli.Command{queryMissionControlCommand, resetMissionControlCommand}
|
2019-05-10 11:39:16 +03:00
|
|
|
}
|