2019-05-10 11:39:16 +03:00
|
|
|
package main
|
|
|
|
|
|
|
|
import "github.com/urfave/cli"
|
|
|
|
|
2020-03-30 11:53:49 +03:00
|
|
|
// routerCommands returns a list of routerrpc commands.
|
2019-05-10 11:39:16 +03:00
|
|
|
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,
|
2021-01-19 11:57:16 +03:00
|
|
|
getCfgCommand,
|
|
|
|
setCfgCommand,
|
2021-02-13 11:35:07 +03:00
|
|
|
updateChanStatusCommand,
|
2019-08-29 14:03:37 +03:00
|
|
|
}
|
2019-05-10 11:39:16 +03:00
|
|
|
}
|