2019-05-10 10:39:16 +02:00
|
|
|
package main
|
|
|
|
|
|
|
|
import "github.com/urfave/cli"
|
|
|
|
|
2020-03-30 10:53:49 +02:00
|
|
|
// routerCommands returns a list of routerrpc commands.
|
2019-05-10 10:39:16 +02:00
|
|
|
func routerCommands() []cli.Command {
|
2019-08-29 13:03:37 +02:00
|
|
|
return []cli.Command{
|
|
|
|
queryMissionControlCommand,
|
2021-03-18 10:46:47 +02:00
|
|
|
importMissionControlCommand,
|
2019-09-27 11:43:12 +02:00
|
|
|
queryProbCommand,
|
2019-08-29 13:03:37 +02:00
|
|
|
resetMissionControlCommand,
|
|
|
|
buildRouteCommand,
|
2021-01-19 10:57:16 +02:00
|
|
|
getCfgCommand,
|
|
|
|
setCfgCommand,
|
2021-02-13 00:35:07 -08:00
|
|
|
updateChanStatusCommand,
|
2019-08-29 13:03:37 +02:00
|
|
|
}
|
2019-05-10 10:39:16 +02:00
|
|
|
}
|