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-08-29 14:03:37 +03:00
|
|
|
return []cli.Command{
|
|
|
|
queryMissionControlCommand,
|
2019-09-27 12:43:12 +03:00
|
|
|
queryProbCommand,
|
2019-08-29 14:03:37 +03:00
|
|
|
resetMissionControlCommand,
|
|
|
|
buildRouteCommand,
|
|
|
|
}
|
2019-05-10 11:39:16 +03:00
|
|
|
}
|